JavaScript替换当前页面的方法
本文实例讲述了JavaScript替换当前页面的方法。分享给大家供大家参考。具体如下:
下面的JS代码可以替换当前页面为指定的URL
<!DOCTYPE html>
<html>
<head>
<script>
function replaceDoc()
{
window.location.replace("//www.jb51.net")
}
</script>
</head>
<body>
<input type="button" value="Replace document"
onclick="replaceDoc()">
</body>
</html>希望本文所述对大家的javascript程序设计有所帮助。
相关推荐
lupeng 2020-11-14
sjcheck 2020-11-10
meylovezn 2020-08-28
owhile 2020-08-18
Francismingren 2020-08-17
pythonclass 2020-07-29
sunzhihaofuture 2020-07-19
爱读书的旅行者 2020-07-07
行吟阁 2020-07-05
tianqi 2020-07-05
行吟阁 2020-07-04
冰蝶 2020-07-04
lyg0 2020-07-04
owhile 2020-07-04
opspider 2020-06-28
lengyu0 2020-06-28
tianqi 2020-06-21
dadaooxx 2020-06-16