我有这个代码:
<textarea id="status" placeholder="Write here..." name="new_entry"></textarea>
还有这个:
$('#status').focus(function() { alert('focused!'); });
我希望在textarea专注时启动警报,但它不起作用……
解决方法
Here’s the working fiddle.
HTML
<textarea id="status" placeholder="Write here..." name="new_entry"></textarea>
JS
$('document').ready(function(){ $('#status').focus(function() { alert('focused!'); }); });