以下是我的主播标签........
<display:setProperty name="paging.banner.full" value='<p><span id="hix-pagination"><span> <a id="id1" class="prev" href="{1}">◄◄</a>
我尝试了以下使用jquery,但没有得到任何积极的结果.....
alert($('#id1').text());
alert($('#id1').html());
alert($('#id1').val());
答案 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?
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;
});
}
);