jquery清空textarea等輸入框中內(nèi)容:
<textarea id="addComment" cols="110" rows="4"></textarea>
<script>
$("#combnt").click(function (){ $("#addComment").val(''); })
</script>
input回車事件未實(shí)現(xiàn)但頁面刷新:
原因:input文本框外有form標(biāo)簽,當(dāng)form下只有一個(gè)input文本框時(shí)回車自動(dòng)提交表單
解決辦法:
form 加onsubmit 事件,返回 false。 (<form method="post" onsubmit="return false;"> )