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>
1 つの 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 にそのような機能はありますか? 私を助けてください。