当我使用 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
.
为什么?