从元素jquery获取内容而不是名称而是内容

时间:2014-02-25 16:48:13

标签: jquery

如何从链接等元素中获取内容

<a>hello!</a>

我想要“你好!”用jquery。

3 个答案:

答案 0 :(得分:2)

请尝试此代码:

$('a').text();

或者这个:

$('a').html();

DEMO

答案 1 :(得分:2)

您可以使用 text() html()

$('a').text();

Fiddle

如果多个a代码为代码设置了classid

<a id="link">hello!</a>

然后使用id选择器

$('#link').text();

Fiddle

或在 eq() 方法的帮助下使用索引选择a代码

$('a').eq(0).text();

Fiddle

答案 2 :(得分:1)

尝试类似

的内容
$("a").html();