我需要通过弹出窗口使用jQuery datepicker来选择日期并填写不同窗口中的文本字段。(日期选择器和文本字段它们在不同的窗口中)
我直接在 datepicker 的按钮面板的 DIV 中的 jquery-ui-1.8.16.custom.min.js 中添加了一些清除按钮的代码
<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+
B+".datepicker._clearDate(this);\">Clear</button>
和我的弹出窗口代码是这样的。
$("#datepicker").datepicker({
showButtonPanel: true,
changeMonth: true,
changeYear: true,
onSelect: function(dateText, inst)
{
var doc = window.opener.form;
doc.textfieldname.value = dateText;
window.close();
}
});
});
<div id="datepicker" align="center"></div>
如何通过清除文本字段中的所有文本来使清除按钮工作