这是我的 Postlink 标签:
<?php
echo $this -> Form -> postLink(__('Update'), array(
'controller'=>'users','action' => 'update', 'admin'=>false),array('class' => 'uiBtn uiBtnBlue','id'=>'up','title' => 'user update'),
__('Are you sure you want update User?')); ?>
这是我禁用按钮的代码:
$(function(){
$('.ui-button-text').live('click',function(){
var buttonName=$(this).text();
if(buttonName == 'Continue'){
$('#image-b-loading').attr('disabled','disabled');
}
});
});
</script>
以上禁用attr不起作用?