繁体   English   中英

Ajax的jQuery不适用于IE

[英]ajax jquery doesnt work on ie

大家好。 我使用的js / ajax脚本不适用于Internet Explorer。 Firefox可以。

顺便说一句head标签,即时通讯使用这个:

$(document).ready(function () {

    //Check if url hash value exists (for bookmark)
    $.history.init(pageload);   

    //highlight the selected link
    $('a[href=' + document.location.hash + ']').addClass('selected');

    //Seearch for link with REL set to ajax
    $('a[rel=ajax]').click(function () {

        //grab the full url
        var hash = this.href;

        //remove the # value
        hash = hash.replace(/^.*#/, '');

        //for back button
        $.history.load(hash);   

        //clear the selected class and add the class class to the selected link
        $('a[rel=ajax]').removeClass('selected');
        $(this).addClass('selected');

        //hide the content and show the progress bar
        $('#content').hide();
        $('#loading').show();

        //run the ajax
        getPage();

        //cancel the anchor tag behaviour
        return false;
    }); 
});


function pageload(hash) {
    //if hash value exists, run the ajax
    if (hash) getPage();    
}

function getPage() {

    //generate the parameter for the php script
    var data = 'page=' + encodeURIComponent(document.location.hash);
    $.ajax({
        url: "http://pathfofolder/js/loader.php",   
        type: "GET",        
        data: data,     
        cache: false,
        success: function (html) {  

            //hide the progress bar
            $('#loading').hide();   

            //add the content retrieved from ajax and put it in the #content div
            $('#content').html(html);

            //display the body with fadeIn transition
            $('#content').fadeIn('slow');       
        }       
    });
}

loader.php包含获取页面的php代码,例如:

switch($_GET['page'])  {
    case '#link1' : $page = 'contenthere'; break;
} 
echo $page;

因此,在链接上,我正在使用链接1将内容加载到div内容中。

该脚本在firefox上运行良好,但在Internet Explorer中无法加载内容。 有人可以帮我解决这个问题吗?

它根本没有进入IE上的成功功能,而且我也没有从IE得到html错误。

最好的祝福。

确保您的HTML声音正确。 FF倾向于自动修复语法。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM