アプリケーションに次のコードがあります。
<div title="Please Click Here to Expand" class="technology3 closedlanguage" headerindex="0h">
<span class="accordprefix">
<img src="http:www.test.com/expanded.gif" style="width:13px; height:13px; margin-Right:20px">
</span>
Need this text<span class="accordsuffix"></span></div>
「このテキストが必要」である「accordprefix」クラスと「accordsuffix」クラスの間のテキストを取得する必要があります
このために、次のコードを実行しました。
$(window).load(function(){
$(".accordprefix").each(function(){
alert($(this).next().html());
});
});
しかし、うまくいきません。何か提案があれば教えてください。