javascript函数的等效jQuery函数

时间:2014-04-03 18:15:15

标签: javascript jquery function text editor

这个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;
}

1 个答案:

答案 0 :(得分:0)

在Jquery中,代码将是这样的:

bodyIframe = $("#editor").contents().find("body")[0];
bodyIframe.html($("#text").val());