Description du script :
Étape 1 : ajoutez le code suivant à la zone
<script><br><!-- 如下是表单合法性检查,主要是避免一些非法字符的查询 ! --><br>function validate_form()<br>{<br>txt = document.form.search.value;<br>newindex = document.form.numhits.selectedIndex;<br>dahits = document.form. numhits[newindex].value;<br>newindexb = document.form. Whichdir.selectedIndex;<br>dadir = document.form. Whichdir[newindexb].value;<br>if (txt.indexOf(".") ! = -1){<br>alert("La recherche n'est pas valide ! Contient un '.'"); return;}<br>if (txt.indexOf(",") != -1){<br>alert("La recherche n'est pas valide ! Contient un ','"); return;}<br>if (txt.indexOf("@") != -1){<br>alert("La recherche n'est pas valide ! Contient un '@''"); return;}<br>if (txt.indexOf("!") != -1){<br>alert("La recherche n'est pas valide ! Contient un '!''"); return;}<br>if (txt.indexOf("#") != -1){<br>alert("La recherche n'est pas valide ! Contient un '#''"); return;}<br>if (txt.indexOf("$") != -1){<br>alert("La recherche n'est pas valide ! Contient un '$''"); return;}<br>if (txt.indexOf("%") != -1){<br>alert("La recherche n'est pas valide ! Contient un '%''"); return;}<br>if (txt.indexOf("^") != -1){<br>alert("La recherche n'est pas valide ! Contient un '^''"); return;}<br>if (txt.indexOf("&") != -1){<br>alert("La recherche n'est pas valide ! Contient un '&''"); return;}<br>if (txt.indexOf("*") != -1){<br>alert("La recherche n'est pas valide ! Contient un '*''"); return;}<br>if (txt.indexOf("(") != -1){<br>alert("La recherche n'est pas valide ! Contient un '(''"); return;}<br>if (txt .indexOf(")") != -1){<br>alert("La recherche n'est pas valide ! Contient un ')''"); return;}<br>if (txt.indexOf("[") != -1){<br>alert("La recherche n'est pas valide ! Contient un '[''"); return;}<br>if (txt.indexOf("]") != -1){<br>alert("La recherche n'est pas valide ! Contient un ']''"); return;}<br>if (txt.indexOf(";") != -1){<br>alert("La recherche n'est pas valide ! Contient un ';''"); return;}<br>if (txt.indexOf(":") != -1){<br>alert("La recherche n'est pas valide ! Contient un ':''"); return;}<br>if (txt.indexOf("<") != -1){<br/>alert("La recherche n'est pas valide ! Contient un '<''"); return;}<br/>if (txt.indexOf(">") != -1){<br>alert("La recherche n'est pas valide ! Contient un '>''"); return;}<br>if (txt.indexOf("?") != -1){<br>alert("La recherche n'est pas valide ! Contient un '?''"); return;}<br>if (txt.indexOf("=") != -1){<br>alert("La recherche n'est pas valide ! Contient un '=''"); return;}<br>if (txt.indexOf(" ") != -1){<br>alert("La recherche n'est pas valide ! Contient un ' ''"); return;}<br>else<br>{<br>jsi = new makeLinks(linksize);<br>searchLinks(jsi, txt, dahits, dadir);<br>document.write('</OL>' );<br>document.write('<font color=red>....... 查询结果结束 .......</font><P>');<br>document .write('<hr>');<br>document.write('</body></html>');<br>}</p>
<p>}<br></script>