下面的代码工作,当我与Visual Studio运行:
$.get('@Url.Content("Content/templates/new_story.htm")', function (tr) {
$("#table_body").append(tr.replace(/#story/g, storyNumber));
});
但是,当我在IIS 7.5发布,新的HTML未装入#table_body
。
为什么?
下面的代码工作,当我与Visual Studio运行:
$.get('@Url.Content("Content/templates/new_story.htm")', function (tr) {
$("#table_body").append(tr.replace(/#story/g, storyNumber));
});
但是,当我在IIS 7.5发布,新的HTML未装入#table_body
。
为什么?
我已经看到了这个,当我发布到一个虚拟目录。 我想你会想要做的是一个蒂尔达添加到您的网址是什么:
$.get('@Url.Content("~/Content/templates/new_story.htm")', function (tr) {
$("#table_body").append(tr.replace(/#story/g, storyNumber));
});