本文介绍了我想用jquery或javascript调用textarea的textChange事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我想通过jquery或javascript调用textarea的textChange事件 我在下面的代码中使用I want to call event of textChange of textarea by jquery or javascriptI used below code$(document).ready(function () { $("textarea").change(function () { $(this).hide(); }); }); 但是它不好 以下代码是真的but it's not goodbelow code is true$(document).ready(function () { $("textarea").click(function () { $(this).hide(); }); }); 但问题是发生变化 我想在asp中使用textCahnge for textbox .net 但是使用jquery或javascript for textareabut problem is in event of changeI want a thing like to textCahnge for textbox in asp.netbut with jquery or javascript for textarea推荐答案 但不是很好 以下代码为真but it's not goodbelow code is true 这篇关于我想用jquery或javascript调用textarea的textChange事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!