मैं यह देखने के लिए URL की जाँच कर रहा हूँ कि इसमें ?
विंडो में हैश पॉप स्थिति को नियंत्रित करने के लिए इसमें सम्मिलित है या शामिल है । अन्य सभी ब्राउज़रों में कोई समस्या नहीं है, केवल IE।
डीबगर मुझे यह त्रुटि देता है जब मैं इस तरह से लोड करने की कोशिश करता हूं:
ऑब्जेक्ट संपत्ति या विधि का समर्थन नहीं करता है '
includes
'
जब मैं पृष्ठ को पॉपस्टेट के माध्यम से लोड करता हूं तो मुझे कोई त्रुटि नहीं मिलती है।
$(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
इंटरनेट एक्सप्लोरर 11 का मूल्य क्या है ?