元素使用JQuery从字符串/变量中查找和删除

时间:2013-05-16 07:49:23

标签: jquery jquery-plugins

我在变量中存储了一些HTML。现在我想从这个变量中删除一些div标签:editor_data

function validate_step_3()
{
    var editor_data = CKEDITOR.instances.editor1.getData(); 
    var i = $(editor_data);
    alert(i);
}

警告显示:

  

[object Object]

我想删除这个div

editor_data.find('#fetch_InCkeditor').remove();

2 个答案:

答案 0 :(得分:12)

$(editor_data).find('#fetch_InCkeditor').remove();会这样做。 :)

答案 1 :(得分:0)

页面上的

id 应该是唯一

所以在这种情况下,这应该足够$('#fetch_InCkeditor').remove();