我想使用以下方法清除我的 textarea 字段。这是我的代码:
<form id="localStorageTest" action="" method="post">
<textarea cols="100000" rows="100000" style="height: 150px; width: 200px;" readonly="readonly" name="hhhh" id="txt1"></textarea>
<textarea cols="1000" rows="100000" style="height: 20px; width: 190px;" name="txtarea" id="txt3" class="stored"></textarea>
<input type="button" name="button" onclick="insertdata(txtarea.value)" value="send"/>
</form>
我想清除 id txt3 的字段。我已经这样做了如下..
$('#txt3').button(function() {
localStorage.clear();
})
但它不起作用。我的代码在哪里或有什么问题。请任何人帮助我。提前致谢。