我有一个表单,如果用户更改他/她的选择,我希望清除一个可选字段。我得到了添加或删除可选选项的表单,但是如果用户在可选字段中输入文本,然后改变主意,然后点击取消按钮,那么我希望清除可选字段中的值. 我需要这个,因为当提交表单时,如果可选字段中没有新的日期被提交到数据库,那么可选字段为空是很重要的。
<form>
<a href="#" class="show_hide">+ Add New</a>
<div class="slidingDiv">
Artists name: <input type="text" name="name">
Artists info: <textarea name="info" cols="65" rows="15"></textarea>
<a href="#" class="show_hide">Cancel</a>
</div>
</form>
-
$(document).ready(function(){
$(".slidingDiv").hide();
$(".show_hide").show();
$('.show_hide').click(function(){
$(".slidingDiv").slideToggle();
});
});