提取脚本

发布于 2024-11-17 17:35:21 字数 631 浏览 1 评论 0原文

我有一个 DIV 我想要 ajax 加载。包含需要运行的 javascript。我遇到了这篇SO文章 讨论在主要内容加载后加载脚本。但是我无法让它工作,主要是因为我在内容中找不到脚本!

考虑以下内容:(

$('<p />').html('<div>x</div>').find('div').html()
"x"

由于某种原因,下面的行不起作用:

$('<p><div>x</div></p>').find('div').html()
null

但是,脚本有一些特别之处:

$('<p />').html('<script>x=1</script>').find('script').html()
null

我在这里做错了什么?

I have a DIV I want to ajax-load. The contains javascript that needs to run. I ran across this SO article that talks about loading the scripts after the main content has loaded. However I cannot get it to work, primarily because I can't find the scripts in my content!

Consider the following:

$('<p />').html('<div>x</div>').find('div').html()
"x"

(for some reason the line below wouldn't work:

$('<p><div>x</div></p>').find('div').html()
null

However, there's something special about scripts:

$('<p />').html('<script>x=1</script>').find('script').html()
null

what am I doing wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦言归人 2024-11-24 17:35:21

脚本标签从 jQuery .html() 中被废弃

Script tags get scrapped from jQuery .html()

哭了丶谁疼 2024-11-24 17:35:21

尼尔是对的。我建议使用纯 JS 添加脚本标签:

var scriptTag = document.createElement('script');
script.text = 'alert("testing");';
// if you're linking to a remote script, use script.src instead

document.getElementById('parentID').appendChild(script);
// to append to the body, use document.body.appendChild

Neal is right. I'd recommend adding the script tag with plain JS:

var scriptTag = document.createElement('script');
script.text = 'alert("testing");';
// if you're linking to a remote script, use script.src instead

document.getElementById('parentID').appendChild(script);
// to append to the body, use document.body.appendChild
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文