分类:
2009-07-07 18:34:17
html> content-Type content="text/html;charset=gb2312"> |
----把下面的代码放到需要的地方
|
----把下面的代码放到文件末尾
<script>
var w = document.f.wd;
function s(o) {
if (w.value.length > 0) {
var h = o.href;
var q = encodeURIComponent(w.value);
if (h.indexOf("q=") != -1) {
o.href = h.replace(new RegExp("q=[^&$]*"), "q=" + q)
} else {
o.href += "?q=" + q
}
}
}; (function() {
if (new RegExp("q=([^&]+)").test(location.search)) {
w.value = decodeURIComponent(RegExp.$1)
}
})();
document.write('')
window.onunload = function() {};