我的 aspx 页面中有一个空 div,我正在该 div 中生成动态内容。
<div id="book"> </div>
加载我的 div 的内容后
<div id="book">
<div class=’a’ style=”left: 0px ; width:469px;"> … </div>
<div class=’b’ style=”left: 0px ; width:469px;"> … </div>
<div class=’c’ style=”left: 0px ; width:469px;"> … </div>
</div>
我想要一个 txt 文件中的 html 代码。所以基本上我的 txt 文件包含数据:
<div class=’a’ style=”left: 0px ; width:469px;"> … </div>
<div class=’b’ style=”left: 0px ; width:469px;"> … </div>
<div class=’c’ style=”left: 0px ; width:469px;"> … </div>
在 jQuery 中这些东西有什么功能吗?请帮我。