jQuery .load()/ .ajax()在附加后不返回HTML中执行JavaScript

前端之家收集整理的这篇文章主要介绍了jQuery .load()/ .ajax()在附加后不返回HTML中执行JavaScript前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用.load()和$.ajax来获取一些需要附加到容器的 HTML,但是当我将它附加到一个元素时,返回的HTML中的 Javascript不会被执行.

使用.load():@H_404_3@

$('#new_content').load(url+' #content > *',function() {
    alert('returned');
});

我也试过切换到$.ajax调用.然后我从返回的HTML中提取脚本,之后我将其附加到容器,但是同样的问题,JS在这种情况下没有被执行,甚至没有被附加,而且据了解,尝试附加< script>像这样的DOM元素被皱眉了?@H_404_3@

使用$.ajax:@H_404_3@

$.ajax({ url: url }).done(function(response) {
    var source  = $("<div>").html(response).find('#overview_script').html();
    var content = $("<div>").html(response).find('#content').html();

    $('#new_content').html(content);
    $('<script>').appendTo('#new_content').text(source).html();

});

理想情况下,我会在附加HTML之后在回调中运行此JavaScript,但变量被设置为从控制器返回的值.@H_404_3@

所以总而言之,我试图获得一些包含JS的HTML,这些HTML需要在附加HTML之后运行,但是我没有运气使用.load()或$.ajax()作为返回的HTML中的脚本或者在附加它时消失,或者根本不执行.@H_404_3@

解决方法

当与片段选择器一起使用load()时,脚本元素将在添加片段之前被删除,因此这是 script will not get executed.

When calling .load() using a URL without a suffixed selector
expression,the content is passed to .html() prior to scripts being
removed. This executes the script blocks before they are discarded. If
.load() is called with a selector expression appended to the URL,
however,the scripts are stripped out prior to the DOM being updated,
and thus are not executed. An example of both cases can be seen below:@H_404_3@

所以尝试@H_404_3@

$.get('partial.html',function(result){
    $result = $(result);

    $result.find('#content').appendTo('#new_content');
    $result.find('script').appendTo('#new_content');
},'html');

演示:Fiddle@H_404_3@

原文链接:https://www.f2er.com/jquery/179932.html

猜你在找的jQuery相关文章