这是我的代码。
<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很多
答案 0 :(得分:0)
IE和其他浏览器中的按钮会导致页面重新加载。你需要在函数中返回false。
function myfun(){
alert("hello,it's me!");
return false;
}