<noscript>您的游览器不支持js</noscript> 在不支持js 游览器上,显示消息
confirm() 页面弹出选项,返回ture or false
prompt() 页面弹出输入框,返回ture or false
window.onload = initAll;
function initAll(){
document.getElementById("redirect").onclick = initRedirect;
}
function initRedirect(){
window.location = "test2.html";
return false;
}
window.location
设置一个新页面,return false表示停止对用户单机的处理,这样就不会加载href指向的页面
JavaScript 关键字this使脚本能够根据使用这个关键字的上下文将值传递给函数。
this所在的函数是当做哪个对象的方法调用的,则该对象就是this所引用的对象。