Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改焦点上的文本区域的属性,但它不起作用。
HTML:
<textarea name='naziv' id='name'>Naziv</textarea>
查询:
$('textarea#name').focus(function(){ $(this).attr('readonly','readonly');});
提琴手
实际上,您的代码有效。在 jsFiddle 中,您忘记勾选 jQuery 库。
Under Frameworks & Extensions, choose a jQuery version.
修复了 jsFiddle