警告消息在IE6-7-8中不起作用,但在IE9和Mozilla中它工作得很好

Alert message doesn't work in IE6-7-8 but in IE9 , Mozilla it works good

本文关键字:Mozilla 工作 很好 IE9 但在 消息 IE6-7-8 不起作用 警告      更新时间:2023-09-26

每个人,我需要你的帮助。我正在编写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>

i测试也通过在onclick按钮:"alert("ok");"javascript:alert();

thanx a lot

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

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