window.locations.href互換性
469 ワード
$(function(){
$("#btnJump").click(function(){
//window.location.href("01.html");//IE ,FF
//window.location.href="01.html"; //IE ,FF
//window.location="01.html"; //IE FF
//location.href="01.html"; //IE FF
window.setTimeout(function(){ location.href="01.html";},2000)
}); //IE FF
})
は自分の学習を書く中でjsページのジャンプ互換性の問題に出会って、ネット上から資料の整理の上のコードを探して、すでに検証しました.