我有一个简单的 html 文件,用于显示嵌入式闪存,我可以从一开始就直接编写,而无需提前单击它。令我失望的是,我无法在我最喜欢的浏览器中执行此操作!问题恰好发生在 Opera 上。在 FF 和 Chrome 上工作正常。
这是代码:(...)
<script type="text/javascript">
function setFocus()
{
<!-- document.getElementById("clock-countdown").tabIndex = -1; -->
document.getElementById("clock-countdown").focus();
}
</script>
</head>
<body onLoad="setFocus();">
<object name="clock-countdown" tabIndex="0" >
<embed id="clock-countdown" wmode="opaque" src="clock-countdown.swf"> </embed>
</object>
</body>