我在表格中有 textarea,想通过单击来调整 textarea 的大小。我在 jsFiddle 中测试了脚本,但它在我的项目中不起作用。比我连接到脚本只是页面但没有成功。jQuery 已连接,另一个脚本工作,css 已连接。
这是代码:
$('textarea').click(function(){
$('textarea').removeClass('active');
$(this).addClass('textareastyle');
});
根据jsFiddle
使用 Firefox 20.0 和 jQuery 1.9.1 测试(缩小版)