取消绑定后我无法绑定点击事件。任何人都可以解决这个问题吗?这是我的代码示例:
if(condition for radio button)
jQuery('#txtEffectiveBeginDate').
next('.ui-datepicker-trigger').
unbind('click').
css({ 'opacity': .50 }).
css('cursor', 'text');
else
jQuery('#txtEffectiveBeginDate').
next('.ui-datepicker-trigger').
bind('click').
css({ 'opacity': 1 }).
css('cursor', 'pointer');