语法错误无效标签

时间:2013-03-14 14:06:14

标签: jquery jquery-mobile

我有jQuery Mobile的jQuery代码,当在另一台服务器上点击URL时,我看到了这个错误:

  

语法错误标签无效

来源是:

$(document).ready(function(){
    var location;
    var starPrice;
    var endPrice;
    var beds;
    var baths;
    var typep;

    $('#location').change(function(){
        typep = $("input[name='type']:checked").val();
        baths = $("input[name='baths']:checked").val(); 
        beds = $("input[name='beds']:checked").val();
        location = $('#location').val();
        starPrice = $('#priceStart').val();
        endPrice = $('#priceEnd').val();

        $.ajax({
            url: "/findListings",
            data:{
                limit: 10
            },
            dataType: "jsonp",
            type : 'POST',
        }).done(function(data) {
            alert(data[0].ListingId);
        });             
    });
});

2 个答案:

答案 0 :(得分:2)

这里有额外的逗号

type : 'POST',

答案 1 :(得分:0)

某些浏览器会忽略一些syantax错误。这里有,问题