在IE9中,此代码不会按预期更改按钮的大小...
<html><head>
<script language="JavaScript">
function fun1()
{
alert("clicked");
document.form1.chk1.disabled=true;
}
function m1()
{
document.form1.chk1.width=60;
}
function m2()
{
document.form1.chk1.width=40;
}
</script>
</head><body>
<form name="form1"><!-- creating radio button group -->
<input type="button" name="chk1" value="red" onClick="fun1()"
onMouseOver="m1()" onMouseOut="m2()">
</form>
</body></html>
最佳答案
嗯,您的代码中缺少此样式属性。尝试替换这个
document.form1.chk1.style.width="60%";
这跟我一起工作
关于javascript - HTML/DOM:鼠标事件不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10782103/