我在母版页中使用 asp.net 脚本管理器来添加 js 文件。在其中一个子页面中,我不希望排除特定的 js 文件。在 asp.net 中可以吗?
例如,我的母版页中的代码
<asp:ScriptManager runat="server" EnablePageMethods="true" EnablePartialRendering="true" ID="id" OnResolveScriptReference="sm_ResolveScriptReference">
<Scripts>
<asp:ScriptReference Path="~/scripts/jquery-1.4.2.min.js" />
<asp:ScriptReference Path="~/scripts/jquery.bgiframe.min.js" />
<asp:ScriptReference Path="~/scripts/tax.js" />
<asp:ScriptReference Path="~/scripts/old.js" />
<asp:ScriptReference Path="~/scripts/menu.js" />
</Scripts>
</asp:ScriptManager>
我喜欢从一个子页面中排除 old.js。希望这会有所帮助