0
我有一個最後一個jQuery問題。我有兩個領域。一個是下拉式,另一個是日期時間字段。如果用戶選擇否,則需要禁用輸入字段並刪除日期時間字段內的任何值,或者如果用戶選擇是,則會向日期時間字段添加驗證規則類。下拉和日期時間字段一起工作
<div class="section _100">
<label for="comments">Allow Comments</label>
<div>
<select name="comments" id="comments">
<option value="" selected="selected">Please Select An Option</option>
<option value="0">No</option>
<option value="1">Yes</option>
</select>
</div>
</div>
<div class="section _100">
<label for="datetime">Date Comments Expire</label>
<div>
<input id="datetime" type="datetime" name="datetime" />
</div>
</div>
$('#comments').change(function(){
$('#datetime').removeAttr('disabled');
$('#comments').not(this).val(0);
$('#comments').each(function(){
if($(this).val().length > 0){
$('#datetime').attr('value','');
}
});
});