0

我一直在尝试将某个 div 中的所有链接拉到一个数组中,并在页面的其他地方使用它们。它适用于 MyBB 软件:

<div class="pm_alert" id="pm_notice">
    <div class="float_right"><a href="private.php?action=dismiss_notice&amp;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&amp;uid=2">test account</a> titled <a href="private.php?action=read&amp;pmid=13" style="font-weight: bold;">take this</a></div>
</div>

但是,链接是通过系统生成的,与名称相同。所以我想把它们全部拉出来,这样我就可以自定义消息而不必编辑 .lang 文件。这是我现在使用的代码,但它不起作用,警报给我未定义:

var link_split = [];
var link_split = $('.pm_link > a').map(function(){
    return this;
}).toArray();
alert(link_split['']);
4

1 回答 1

1

也许错误在thomething之类的

.pm_link > a

它应该是

.pm_alert a

试试

alert($('.pm_link > a').length)
于 2012-06-08T12:13:31.050 回答