这个javascript函数的等效jQuery函数是什么?这是基于iframe的文本编辑器(id =' editor')和textarea(id =' text')。
function edit(){
edition = document.getElementById("editor").contentWindow;
HTMLcontent = edition.document.getElementsByTagName('body')[0];
HTMLcontent.innerHTML = document.getElementById('text').value;
}
答案 0 :(得分:0)
在Jquery中,代码将是这样的:
bodyIframe = $("#editor").contents().find("body")[0];
bodyIframe.html($("#text").val());