我正在嘗試在我的Web應用程序中實現(xiàn)站點搜索功能,但是我想刪除多余的單選按鈕輸入。原始代碼使您可以使用三個單選按鈕來選擇搜索引擎。我刪除了三個按鈕,但是我不知道如何刪除最后一個按鈕。我只想默認使用google。// All-in-one Internal Site Search script- By JavaScriptKit.com (http://www.javascriptkit.com)// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/// This notice must stay intact for use//Enter domain of site to search.var domainroot = "ts.xxxxxxx.net"var searchaction = [ //form action for the 3 search engines "http://www.google.com/search"]var queryfieldname = ["q", "p", "q"] //name of hidden query form for the 3 search enginesfunction switchaction(cur, index) { cur.form.action = searchaction[index] document.getElementById("hiddenquery").name = queryfieldname[index]}function jksitesearch(curobj) { for (i = 0; i < document.jksearch.se.length; i++) { //loop through radio to see which is checked if (document.jksearch.se[i].checked == true) switchaction(document.jksearch.se[i], i) } document.getElementById("hiddenquery").value = "site:" + domainroot + " " + curobj.qfront.value}<form name="jksearch" action="http://www.google.com/search" method="get" onSubmit="jksitesearch(this)"> <input id="hiddenquery" type="hidden" name="q" /> <input name="qfront" type="text" style="width: 200px" value="" /> <input type="submit" value="Search" /><br /> <div style="font: bold 11px Verdana;"><input name="se" type="radio" checked> </div></form>
在不破壞我的代碼的情況下刪除函數(shù)
三國紛爭
2021-05-16 12:05:01