c#mvc3在部署后没有显示jquery元素

时间:2014-01-09 11:01:54

标签: c# jquery asp.net-mvc-3 deployment

当我将我的解决方案部署到我的托管服务器时,一个特定的jquery元素只是没有出现..

它显示当我在我的本地电脑上运行它..但是当它部署时它就不存在..它是一个呈现菜单的jquery元素..

任何可能导致这种情况的想法?

我已经上传了所有参考文献和所有内容..

jQuery.ajax({ type: "POST",
    url: "/Bubble/MyInterests",
    dataType: "json",
    traditional: true,
    success: function (data) {
        $("#coInterestContainer").empty();
        $("#coInterestTemplate").render(data).appendTo("#coInterestContainer");
        $(document).on('click', '.coInterest', function () {
            location.href="/Bubble/View/" + $(this).attr("id") + "?CreateOffer=1";
        });
    }
});

0 个答案:

没有答案