首页 > 代码库 > js打开、关闭页面和运行代码那些事
js打开、关闭页面和运行代码那些事
<!doctype html><html><head><meta charset="utf-8"><meta name="author" content="智能社 - zhinengshe.com"><meta name="copyright" content="智能社 - zhinengshe.com"><title>智能社 - www.zhinengshe.com</title></head><body> <input type="button" value=http://www.mamicode.com/"打开" onclick="window.open(‘http://www.baidu.com‘), ‘_self‘" /> <input type="button" value=http://www.mamicode.com/"关闭" onclick="window.close();" /></body></html>
<!doctype html><html><head><meta charset="utf-8"><meta name="author" content="智能社 - zhinengshe.com"><meta name="copyright" content="智能社 - zhinengshe.com"><title>智能社 - www.zhinengshe.com</title><style></style><script>window.onload=function (){ var oBtn=document.getElementById(‘btn‘); var oText=document.getElementById(‘text‘); oBtn.onclick=function (){ var oNewWidnow=window.open(‘about:blank‘, ‘_blank‘); oNewWidnow.document.write(oText.value); }; };</script></head><body> <textarea cols="80" rows="10" id="text"></textarea> <input type="button" value=http://www.mamicode.com/"运行" id="btn" /></body></html>
js打开、关闭页面和运行代码那些事
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。