我有一个包含html元素的字符串,例如以下
var elements = "<div class='instance' id=''><h1></h1></div>";
如何使用它以便能够像这样做
$('instance').prop('id',5);
$('instance h1').html('hello all');
答案 0 :(得分:1)
您可以将其直接加载到新的jQuery对象中:
$(elements).find("h1").html("Hello All").appendTo("body");
此外,5
不是有效的id
- 请不要在id
值的开头使用数字。