脚本不能仅在Internet Explorer上运行?

时间:2010-09-22 13:51:32

标签: php javascript html

我的标题中有这样的功能

function bingframe() {

var iframe = document.getElementById('bframe');
iframe.src = 'http://www.bing.com/search?q=' + document.searchForm.search.value.replace(/ /g,'+') + '&go=&form=QBLH&filt=all&qs=n&sk=';

}

现在,当我调用此功能时,它会在Google Chrome,Firefox和现代浏览器中响应,但不会响应Internet Explorer。

您是否可以相应地修改代码?

感谢你。

1 个答案:

答案 0 :(得分:1)

适合我 - IE8

<html>
  <head>
  <title></title>
<script>
function bingframe(theForm) {
  var iframe = document.getElementById('bframe');
  var url = 'http://www.bing.com/search?q=' + escape(theForm.search.value).replace(/ /g,'+') + '&go=&form=QBLH&filt=all&qs=n&sk=';
  iframe.src = url; 
  return false
}
window.onload=function() {
  document.forms[0].search.focus();
}
</script>
</head>
<body>
<form name="searchForm" onSubmit="return bingframe(this)">
<input type="text" name="search" value="" />
<input type="submit">
</form>
<iframe id="bframe" src="about:blank" width="100%" height="100%"></iframe>
</body>
</html>

然而这样做 - 没有必要的脚本:

<html>
<head>
<title></title>
<script>
window.onload=function() {
  document.forms[0].q.focus();
}
</script>
</head>
<body>
<form name="searchForm" action="http://www.bing.com/search" target="bframe">
<input type="text" name="q" value="" />
<input type="hidden" name="go" value="" />
<input type="hidden" name="form" value="QBLH" />
<input type="hidden" name="filt" value="all" />
<input type="hidden" name="qs" value="n" />
<input type="hidden" name="sk" value="" />
<input type="submit">
</form>
<iframe name="bframe" src="about:blank" width="100%" height="100%"></iframe>
</body>
</html>