如果URL没有容纳给定参数,我试图将外部JS文件加载到正文的末尾。这是我试过没有任何成功的。如果URL不包含,我想加载文件?A =编辑
if (/[?]A=Edit/.test(window.location.href)) {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '/js/inner-functions.js';
$('body').append(script);
}
如果有人能指出我正确的方向,那就太好了。
答案 0 :(得分:0)
您应该在.js文件中验证您的应用程序上下文/状态,而不是在外部。
答案 1 :(得分:0)
只是改变你的状况:
if (!/[?]A=Edit/.test(window.location.href)) {
...