我的应用程序中有以下代码。
<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());
});
});
但它不起作用。请提出任何建议。