0
<div id='Thirdsamplecodesnippet' class='clearfix'>
<pre class='brush:html;'>&lt;html&gt;
&lt;body&gt;
&lt;p&gt;Hello world.&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<input type='hidden' id='codeid' value='process'>  
</div>

これをdivから抽出したいと思います:

<pre class='brush:html;'>&lt;html&gt;
&lt;body&gt;
&lt;p&gt;Hello world.&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>

jQueryでこれはどのように可能ですか?

4

1 に答える 1

3

divid を持つ親の html がThirdsamplecodesnippet必要です。jQuery の idセレクターを使用して、親 div jQuery オブジェクトを取得し、その上でhtml()関数を呼び出すことができます。

ライブデモ

$('#Thirdsamplecodesnippet').html()
于 2013-01-05T13:00:52.747 に答える