在javascript中获取链接的文字

时间:2015-04-16 08:41:36

标签: javascript jquery html css html5

我有一个简单的链接:

<a class="myid">Myid Text</a>

每当点击链接时,我想通过在java脚本中显示它来检索“Myid Text”。我该怎么做?以下是我最初的javascript代码:

$(".myid").click(function (event) {                
    alert("Display link's text here..!!");
});

6 个答案:

答案 0 :(得分:3)

$(".myid").click(function (event) { 
    // I want to prevent the elements default action (thanks @ Rajaprabhu Aravindasamy). 
    event.preventDefault(); 
    alert($(this).text());
});

JSFIDDLE

详细了解preventDefault here

答案 1 :(得分:0)

应该是:

alert($(this).text());

答案 2 :(得分:0)

您正在jquery中寻找.text()

$(this).text()

答案 3 :(得分:0)

&#13;
&#13;
$('.link').click(
     function()
     {
        alert($(this).text());
         }
  );
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="#" class="link">Linkkk</a>
&#13;
&#13;
&#13;

可能你的班级名称错了。

答案 4 :(得分:0)

JQuery的:

$(".myid").click(function(){
  alert($(this).text());
});

答案 5 :(得分:0)

不能相信仍有这样的问题。

但这是一个link