此代码在 & lt; = IE7 中运作良好, 但在 firefox 中不起作用. I 正在使用 firefox 浏览器 12. 0 。 我不确定... help 是什么原因. 谢谢 。
<head>
<script type="text/javascript">
function getfocus(obj){
if(obj.value.length==0){
alert("Please enter something");
obj.focus();
}
}
</script>
</head>
<body>
<input type="text" onblur="getfocus(this)" value="Get focus">
</body>
</html>