这段代码在 <= IE7 中运行良好,但在 firefox 中不起作用.. 我使用的是 firefox 浏览器 12.0 .. 我不确定是什么原因.. 非常感谢您的帮助.. 谢谢..
<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>