您将如何使用 jQuery 中的类名检索 ID 标记的值。
我正在尝试以下代码,但它返回 value undefined
。
<html>
<body>
<textarea id='5' class='cp _check'>sometexthere</textarea>
</body>
<html>
并使用以下函数调用它:
function updatecontent() {
var check = $('.cp _check').('#id').val();
alert(check);
}
该alert
框返回值为undefined
。