Javascript发布到IIS后不工作
本文关键字:工作 IIS Javascript | 更新日期: 2023-09-27 18:14:49
我在网上搜索了一段时间,试图找到类似的东西来帮助我,但没有成功。
我在下面写的代码在我的本地主机上完美地工作,但不是在服务器上,任何人都可以提供一些建议,如果需要,乐意添加任何额外的代码。
$(function() {
$("#SelectedStillage").on("change", function() {
var orderid = '@ViewBag.SalesOrder';
var stillageid = $(this).val();
$.ajax({
type: "GET",
url: "/DespatchPrintLabels/_itemsPackedInStillage",
data: {
orderID: orderid,
stillageID: $(this).val()
},
success: function(data) {
$("#target").html(data);
},
error: function() {
alert("Something went wrong ");
}
});
});
})
使用
url: '@Url.Action("_itemsPackedInStillage" "DespatchPrintLabels")'