jQuery,获取textarea的ID

时间:2011-04-12 08:31:38

标签: jquery textarea

我有一个文本字段定义如下的表单:

<textarea style="height: 60px; width: 100%;" name="F3414" id="F3414" rows="6" cols="80" wrap="virtual" class="frmTxa fckEditor"></textarea>

我需要使用jQuery来获取textarea id(在这种情况下,F3414)。

我试过了:

$('textarea .fckEditor').attr('id'); 
$('.fckEditor').attr('id'); / ... with no luck.

有什么想法吗?

非常感谢

2 个答案:

答案 0 :(得分:2)

alert($('textarea.fckEditor').attr('id'));

原始问题中textarea .fckEditor之间有空格,删除它会产生影响吗

工作示例:here

答案 1 :(得分:1)

如果您使用textarea作为编辑器,则在应用插件后,它不会呈现为textarea。它可能是内容可编辑设置为on的iframe。

使用firebug检查页面源并尝试找出HTML结构。