如何在raw中读取本地html文件并使用jQuery添加到textarea中?

时间:2016-04-05 05:15:45

标签: jquery html tinymce

如何在raw中读取本地html文件并使用jQuery 1.3添加到textarea中?

1 个答案:

答案 0 :(得分:0)

这样的东西?

<textarea></textarea>

&#13;
&#13;
$(function(){
    $.get('local_file.html', function(data){
        $('textarea').val(data);
    });
});
&#13;
&#13;
&#13;