我有這個網站:jQuery的 - 如何讓HTML一個DIV中
<div class="portlet-header">
Company Information ... <button> some button here </button>
</div>
<div class="portlet-content">
<div class="content_regular">
<table style=" width:100%; height:100%;">
...content
</table>
</div>
</div>
如何獲得的HTML後,我在portlet的標題部分按一下按鈕,在這種情況下,該表標籤?
我有這個jquery代碼來獲取標題上的文字:$(this).parent().text();
,但沒有得到任何嘗試檢索如上所示的「content_regular」類下的html。
希望你的智慧能幫助我。我知道這很容易給別人,但我不熟悉jquery。
感謝
$( 'content_regular')。HTML()確實有效,但這裏的問題是,上面的代碼是一個小部件。並且在同一頁面上至少有4個。如果我使用$('。content_regular')。html(),只返回第一個。 – 2010-06-21 11:16:29