0

私はこのようなhtmlをいくつか持っています。ポップアップ ウィンドウのテキスト ボックス、具体的には Quora の質問ボックスです。http://www.quora.com/

<div class="qtext_editor_content qed_content" group="__w2_TrzaBWs_interaction" interactive="true" w2cid="TrzaBWs" id="__w2_TrzaBWs_editor" contenteditable="true" npdkey="h5evmzsf0.cz3gxez1tjn0cnmi">add<br npdkey="h5evn1ub0.l1r3uudq6by8ehfr">This is my text</div>

「これは私のテキストです」を取得したいのですが、JQuery の複数属性フィルターは文字通りページ上のすべてのテキストを返しています。私はやってみました

$("div[class='qtext_editor_content qed_content'][group$=_interaction]").text()

しかし、良い効果はありません。

ありがとう!

4

2 に答える 2

0

に渡される文字列は、$("") jQuery("")次のような css セレクターである必要があります

$("div.qtext_editor_content.qed_content[group=__w2_TrzaBWs_interaction]").text()

于 2012-08-03T06:26:58.370 に答える
0

それにはIDがあります。なぜ使用しないのですか

$('#__w2_TrzaBWs_editor').text()
于 2012-08-03T06:27:11.060 に答える