我有这些例程在Firefox和Chrome中运行良好,但在IE9中根本不运行。有什么建议?感谢。
function testSimpleGet() {
$.get("http://localhost/Notifications/version", function(data){
alert("Data Loaded: " + data);
});
};
$(document).ready(function(){
testSimpleGet(); /* Start the inital request */
});