使用jquery从外部html页面向js文件添加JavaScript

时间:2013-02-07 05:08:55

标签: javascript jquery

$.ajax({   
    url: "sub_template5_js.php?content_id="+content_id,  
    dataType: 'html',
    success: function(data){  
        alert(data);
    }  
});

在上面的代码中,当我发出警告数据时,我得到了带有js脚本的html,我需要将javascript分开并附加到外部.js文件 PL。帮帮我

谢谢

1 个答案:

答案 0 :(得分:1)

使用脚本作为选择器应该工作..

$('script').text(); // use attribute selector to get a particular one .   

fiddle here

注意:必须使用循环,如果你有多个脚本标记。

这只是一个让你入门的例子......

没有使用您的数据部分进行测试,但您可以尝试..

 data.find('script').text();