日期:2014-05-16 浏览次数:20309 次
<html>
<body>
<input type="button" value="test" onclick="test()">
</body>
<script type="text/javascript">
function test()
{
window.showModalDialog("b.html","","");
}
</script>
</html>
<html>
<body>
<input type="button" value="go to Baidu" onclick="test()">
</body>
<script type="text/javascript">
function test()
{
document.location.href = document.location.href;
}
</script>
</html>
<base target="_self">
<html>
<head>
<base target="_self">
</head>
<body>
<a id="reload" href="b.html" style="display:none">reload...</a>
<input type="button" value="go to Baidu" onclick="test()"/>
</body>
<script type="text/javascript">
function test()
{
var a = document.getElementById("reload");
a.click();
}
</script>
</html>