如何使用Jquery从锚标记中获取文本

时间:2013-03-06 09:44:39

标签: javascript jquery jsp displaytag

以下是我的主播标签........

<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());

3 个答案:

答案 0 :(得分:3)

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

<强> Live Demo

$(function(){
   alert($('#id1').html());
});

答案 1 :(得分:1)

请参阅此链接:

How to get anchor text/href on click using jQuery?

Get text from anchor tag

HREF:

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

文本:

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

答案 2 :(得分:0)

$(document).ready(function() 
        { 
            $("#id1").click(function() {
            alert($(this).text());
            return false;
            }); 
        } 
);