文本区域的清除值
我想清除文本区域的值。
<textarea style="width:850px;height:500px" id="txtEnterProject" name="txtEnterProject">aaa</textarea>
$("#txtEnterProject").cleditor(); //set fckEditor
$("#txtEnterProject").attr("value",null);
$("#txtEnterProject").val(null);
$("#txtEnterProject").text(null);
$("#txtEnterProject").html(null);
$("#txtEnterProject").attr("value",'');
$("#txtEnterProject").val('');
$("#txtEnterProject").text('');
$("#txtEnterProject").html('');
$("#txtEnterProject").attr("value",' ');
$("#txtEnterProject").val(' ');
$("#txtEnterProject").text(' ');
$("#txtEnterProject").html(' ');
知道为什么这一切都不起作用吗?
I would like to clear the value of a text area.
<textarea style="width:850px;height:500px" id="txtEnterProject" name="txtEnterProject">aaa</textarea>
$("#txtEnterProject").cleditor(); //set fckEditor
$("#txtEnterProject").attr("value",null);
$("#txtEnterProject").val(null);
$("#txtEnterProject").text(null);
$("#txtEnterProject").html(null);
$("#txtEnterProject").attr("value",'');
$("#txtEnterProject").val('');
$("#txtEnterProject").text('');
$("#txtEnterProject").html('');
$("#txtEnterProject").attr("value",' ');
$("#txtEnterProject").val(' ');
$("#txtEnterProject").text(' ');
$("#txtEnterProject").html(' ');
Any idea why none of this works?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
脚本:
或可能:
用法:
在此处查看更多信息:清除 FckEditor 这里是另一个链接:使用FCKeditor(它适用于.NET,但它有一些关于使用Javascript执行功能的内容)
希望它有所帮助。
Script:
or possibly:
Usage:
Check here for more info : Clearing an FckEditor and here is another link: Using FCKeditor (it is for .NET but it has some things regarding using Javascript to perform functions)
Hope it helps.