$(".ui-datepicker-trigger").attr('disabled',true);
我试图禁用像这样的图像按钮..但它不起作用
但如果我做它的工作
$(“UI的日期选择器触发”)隐藏();隐藏是wokring但残疾人不工作?
任何人都可以告诉我吗?
谢谢
解决方法
Datepicker有一个你可以使用的内置
disable
method,这也禁用了文本输入,如下所示:
$("#datepicker").datepicker("disable");
You can view a demo here,如果可能,你需要使用这种方法,因为datepicker实际上跟踪了内部禁用的内容,you can see the source code here.
另一种方法是手动.unbind()
来自该图像的点击,如下所示:
$(".ui-datepicker-trigger").css({opacity:'0.5',cursor:'default'}).unbind('click');
You can see a demo of that here,.css()
部分只是给它一些“残疾”造型:)