在safari浏览器中,[rel =' fct']。点击功能不起作用?

时间:2015-04-20 11:53:52

标签: javascript jquery html safari

java-script函数无法在safari浏览器上运行 JavaScript代码:

$(function() {
    $("a[rel='fct']").click(function(e) {

    pageurl = $(this).attr('href');
    var path = pageurl.split('?')[0];


    // to get the ajax content and display in div with id 'content'
    $.ajax({
        type : 'POST',
        url : pageurl,
        success : function(data) {
            alert("success");
        }
    });


    e.preventDefault()
});

});

HTML代码: -

<a rel="fct" href="http://stackoverflow.com/">Stack Overflow </a>

上面的代码在chrome,mozilla中运行良好,但在safari中不起作用

请帮忙。 谢谢

0 个答案:

没有答案