警报消息在IE6-7-8中不起作用,但在IE9中,Mozilla运行良好

时间:2014-05-22 17:01:49

标签: javascript

每个人, 我需要你的帮助。 我正在研究一个javascript代码,我尝试在我的IE6,IE7,IE8浏览器中进行测试,但它不起作用,但在mozilla或IE9中,这很好,为什么?!

这是我的代码。

<html>
<body>

<button onclick="myfun()">try it</button>

<script>
function myfun(){
alert("hello,it's me!");
}
</script>
</body>
</html>

我也可以通过在onclick按钮上进行测试:“alert(”ok“);” ,这也是:javascript:alert();

thanx很多

1 个答案:

答案 0 :(得分:0)

IE和其他浏览器中的按钮会导致页面重新加载。你需要在函数中返回false。

function myfun(){
  alert("hello,it's me!");
  return false;
}