1

以下是我的锚标签......

<display:setProperty name="paging.banner.full" value='<p><span id="hix-pagination"><span> <a id="id1" class="prev" href="{1}">&#9668;&#9668;</a>

我使用 jquery 尝试了以下操作,但没有得到任何积极的结果.....

alert($('#id1').text());
      alert($('#id1').html());
      alert($('#id1').val());
4

3 回答 3

4

您有正确的选择器,如果您成功包含了 jQuery,那么您可能需要document.ready还检查您是否从 DOM 中获取了 html

现场演示

$(function(){
   alert($('#id1').html());
});
于 2013-03-06T09:46:19.553 回答
1

参考这个链接:

如何使用 jQuery 在点击时获取锚文本/href?

从锚标记获取文本

参考资料:

$(function(){
$('div.res a').click(function(){
alert($(this).attr('href'));
 });
});

文本:

$(function(){
$('div.res a').click(function(){
alert($(this).text());
 });
});
于 2013-03-06T09:49:42.530 回答
0
$(document).ready(function() 
        { 
            $("#id1").click(function() {
            alert($(this).text());
            return false;
            }); 
        } 
);
于 2013-03-06T09:47:19.177 回答