Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$('#somediv').html(' <div id="innerDiv"> Testing </div>');
从上面的语句中,我将#somediv 的 html 设置为
<div id="innerDiv"> Testing </div>
我现在想选择 innnerDiv。我该怎么做??
例如:$('#innnerDiv').html("Modified");
就像你做的那样,一旦 html 在 DOM 上,你就可以选择它
$('#innnerDiv')
如果你想要里面的html,你可以使用:
var htmlStr = $('#innnerDiv').html(); // in your case it will contain: Testing
你说过什么 $('#innnerDiv').html("Modified"); 是访问#innerdiv 并修改其内容的正确方法