我需要通过弹出窗口使用jQuery datepicker来选择日期并在不同窗口中填写文本字段。(datepicker和textfield他们在不同的窗口中)
我在jquery-ui-1.8.16.custom.min.js中直接添加了一些清除按钮的代码 在datepicker中按钮面板的DIV
<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>
如何通过清除文本字段中的所有文本来清除按钮
答案 0 :(得分:1)
我已经通过广告ID找到了清除按钮的解决方案,如
<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+
B+".datepicker._clearDate(this);\" id = "BTClear" >Clear</button>
你可以使用像html按钮这样的id清除