我想从我的iPad禁用键盘弹出,所以我做这样的事情,但它不是我的心愿。
我有一个文本框:
<h:inputText id="txtDate" value="#{myDateController.selected.DOB}"
我尝试使用“只读”属性,但数据不能保存到数据库中。 我也用这个:$( “#frmEdit \:txtDate”)。ATTR( “已禁用”,真) - >但它也不行
我在网上搜索,并用此链接应用我的代码,但它也不能确定: iPad的Web应用程序:如何防止键盘上的jQuery日期选择器弹出
$(function() {
//$("#frmEdit\\:txtDate").attr("disabled", true)
$("#frmEdit\\:txtDate").datetimepicker({
// showOn: "button"
showOn: "both",
buttonImage: "../images/calendar.png",
buttonImageOnly: true,
constrainInput: true,
showButtonPanel: true,
dateFormat: 'dd-M-yy',
addSliderAccess: true,
sliderAccessArgs: { touchonly: false },
onClose: function(dateText, inst){
$(this).attr("disabled", false);
},
beforeShow: function(input, inst){
$(this).attr("disabled", false);
}
});
});
这有什么错我的代码? 或任何其他的解决办法呢? 非常感谢