jQuery.replaceWith 不接受

我有一个包含一些 HTML 的 AJAX 响应,其中包括

此 HTML 应该替换现有元素,但是当我使用:

$(element).replaceWith($(response))

我丢失了其中的脚本标签...

如何准确地插入 HTML 发送的方式?

I have an AJAX response that contains some HTML, including <script> elements.

This HTML should replace an existing element, but when I use:

$(element).replaceWith($(response))

I lose the script tags from it...

How can I insert the HTML exactly how it is sent?

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

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

发布评论

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

评论(3

等数载,海棠开 2024-12-22 10:21:08

它将返回一个字符串!

$.get("ajax.php")
     .success(function(returningHtmlString) {
          $(element).replaceWith(returningHtmlString);
     });

It will return a string!!

$.get("ajax.php")
     .success(function(returningHtmlString) {
          $(element).replaceWith(returningHtmlString);
     });
櫻之舞 2024-12-22 10:21:08

此代码来自 facebook 的示例应用程序。在文档中插入

。该代码需要 jQuery 来加载脚本。在您的情况下,请将 //connect...../all.js' 替换为

(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());

This code is from facebook's sample app. Insert <div id="fb-root"></div> in your document. The code requires jQuery to load up the script. In your case, replace //connect...../all.js' with the <script> elements.

(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
独自←快乐 2024-12-22 10:21:08

请参阅 jQuery.parseHTML( data [, context ] [, keepScripts ] )

以下内容应该有效

var content = jQuery.parseHTML(response, document, true)
$(element).replaceWith(content)

See jQuery.parseHTML( data [, context ] [, keepScripts ] )

The following should work

var content = jQuery.parseHTML(response, document, true)
$(element).replaceWith(content)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文