ฉันกำลังตรวจสอบ URL เพื่อดูว่ามีหรือรวม?
อยู่ในนั้นหรือไม่เพื่อควบคุมสถานะป๊อปแฮชในหน้าต่าง เบราว์เซอร์อื่น ๆ ทั้งหมดไม่มีปัญหามีเพียง IE เท่านั้น
ตัวดีบักให้ข้อผิดพลาดนี้แก่ฉันเมื่อฉันพยายามโหลดด้วยวิธีนี้:
วัตถุไม่สนับสนุนคุณสมบัติหรือวิธีการ '
includes
'
ฉันไม่มีข้อผิดพลาดเมื่อฉันโหลดหน้าเว็บผ่าน popstate
$(document).ready(function(e) {
if(window.location.hash) {
var hash;
if(window.location.hash.includes("?")) {
alert('I have a ?');
hash = window.location.hash.substring(window.location.hash.indexOf('#') + 0,window.location.hash.indexOf('?'));
}else {
hash = window.location.hash;
};
if (hash=="#DRS" || hash=="#DRP" || hash=="#DFFI" || hash=="#DCI" || hash=="#DCP" || hash=="#DRP" || hash=="#DRMA" || hash=="#EICS" || hash=="#ORG"){
$(hash+'Content').addClass('pageOn').removeClass('pageOff');
}else {
$('#homeContent').addClass('pageOn').removeClass('pageOff');
};
} else {
$('#homeContent').addClass('pageOn').removeClass('pageOff');
}
$(window).on('popstate', function() {
var hash;
if(window.location.hash.includes("?")) {
hash = window.location.hash.substring(window.location.hash.indexOf('#') + 0,window.location.hash.indexOf('?'));
}else {
hash = window.location.hash;
};
if (hash=="#DRS" || hash=="#DRP" || hash=="#DFFI" || hash=="#DCI" || hash=="#DCP" || hash=="#DRP" || hash=="#DRMA" || hash=="#EICS" || hash=="#ORG"){
$(this).navigate({target: $(hash+'Content')});
if(window.location.hash.includes("?")) {
}else{
location.href = location.href+'?';
}
}else {
$(this).navigate({target: $('#homeContent')});
};
});
});
window.location.hash
ใน Internet Explorer 11?