我一直试图将某个div中的所有链接拉到一个数组中,然后在页面的其他地方使用它们。这是软件MyBB:
<div class="pm_alert" id="pm_notice">
<div class="float_right"><a href="private.php?action=dismiss_notice&my_post_key=d668d58abafb0f4ec8ab4c902e4eb460" title="Dismiss this notice" onclick="return MyBB.dismissPMNotice()"><img src="images/aesthetic/dismiss_notice.gif" alt="Dismiss this notice" title="[x]" /></a></div>
<div><strong>You have one unread private message</strong> from <a href="http://localhost/mybb/member.php?action=profile&uid=2">test account</a> titled <a href="private.php?action=read&pmid=13" style="font-weight: bold;">take this</a></div>
</div>
链接是通过系统生成的,与名称相同。所以我想把它们中的所有3个都拉出来,这样我就可以自定义消息而无需编辑.lang文件。这是我现在使用的代码,但它不起作用,警报给我未定义:
var link_split = [];
var link_split = $('.pm_link > a').map(function(){
return this;
}).toArray();
alert(link_split['']);
答案 0 :(得分:1)
可能错误就像
.pm_link > a
应该是
.pm_alert a
试试
alert($('.pm_link > a').length)