当我将我的解决方案部署到我的托管服务器时,一个特定的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";
});
}
});