美文网首页
4.访问页面的url

4.访问页面的url

作者: 若愚同学 | 来源:发表于2018-06-12 22:10 被阅读0次
html中的body
<body>
    
    <button onclick="activeURL()">访问链接</button>
    
    <button onclick="flushURL()">刷新链接</button>

</body>
js
//访问链接
function activeURL(){
    window.location.href = "http://www.baidu.com";
}

//刷新链接
function flushURL(){
    window.location.reload();
}

相关文章

网友评论

      本文标题:4.访问页面的url

      本文链接:https://www.haomeiwen.com/subject/xsxdeftx.html