var board_code_clone = $('#board_code').contents().clone(false);
alert( board_code_clone.filter('div').eq(x).children().eq(y).text() );//make this right
我希望有一个与此相同的代码
$('#board_code_dup > div').eq(x).children().eq(y).text();
我的目的是获得他们在#board_code上键入的代码的克隆副本,然后我将尝试使用board_code_clone对其进行操作,然后将操作的board_code_clone附加到html dom
答案 0 :(得分:0)
如果我理解正确,你可以做你的克隆,进行修改然后追加到DOM,就像你说的那样:
// Get the contents
var clone = $('#board_code').contents().clone(false);
// Do your manipulations
var edited = // modify `clone` as necessary
// Append back to the DOM
$('#new_content').append(edited);