Jquery:首先在我的案例中不起作用

时间:2014-09-02 04:06:36

标签: jquery

这是我的标记http://i.imgur.com/j2rhUH3.png

我试过console.log($('.post-form').find('p:first').val());而我无法记录为值?

2 个答案:

答案 0 :(得分:2)

<p></p>没有value属性,它是text / html容器。因此,您应该尝试获取内部文本。

试试这个:

console.log($('.post-form').find('p:first').text());

Working Example

或者如果您想获得innerHtml部分(但根据您的图片不需要使用.html()),那么您可以使用:

console.log($('.post-form').find('p:first').html());

答案 1 :(得分:0)

试试这个:

console.log($('.post-form').find('p:first').html());

console.log($('.post-form').find('p:eq(0)').html());