使用 jQuery 版本 1.2.3,我尝试在具有属性“maxlength”的 textarea 元素之后添加节点,但它不起作用:
$("textarea[@maxlength]").after("<b>Aint working</b>");
这是 HTML 代码:
<textarea maxlength="500">This is a test.</textarea>
<textarea maxlength="250">Yet another line.</textarea>
<textarea maxlength="125">Bar or foo, whatever.</textarea>
奇怪的是,如果我maxlength
用 eg更改属性,rel
它就可以正常工作!
看看这个现实生活中的例子: http: //www.host2000.be/_temp/jquery_tests_counter.html
PS:我知道 jQuery 1.3 不再支持 [@attribute] 表示法,但这与问题无关。