- 论坛徽章:
- 0
|
如下,我为open按钮(点击时触发test函数)设置了accesskey="o",但是在IE6下,按alt+o,虽然触发了test函数,但是却没有打开t2.html网页。如果直接点击按钮,则可以打开t2.html。这是怎么回事?怎么解决?谢谢!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript" type="text/javascript">
function test()
{
window.showModalDialog("t2.html", null, "dialogWidth=350px;dialogHeight=500px");
alert("test");
}
</script>
</head>
<body>
<input type="button" value="open" onclick="test();" accesskey="o" />
<input type="text" id="t1" value="1234" />
</body>
</html>
|
[ 本帖最后由 beilian 于 2007-11-30 14:13 编辑 ] |
|