- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的帖子链接标签:
<?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>
上面的禁用属性不起作用??
最佳答案
.live()在 jQuery 1.9 中被删除,这意味着您需要使用更新形式的事件委托(delegate),即 .on() .
你可以像这样使用它:
$(document).on('click', '.ui-button-text', function(){
$('#image-b-loading').prop('disabled', true);
});
您还会注意到我们使用 .prop()
而不是 .attr()
。这是因为上面是一个属性。
此外,document
是一个静态元素,应将其替换为最接近的父元素。
关于jquery - 如何使用 jquery 禁用 cakephp 中的 poSTLink?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16911341/
我找不到 $postLink() 的任何示例来自 AngularJS components , 部分 组件具有明确定义的生命周期 .您能否提供一个简单的示例,说明 Controller 中实现的方法,
根据AngularJS的文档,定义指令时,compile中有一个postLink,link', templateUrl: 'directive.html', replace: fals
使用已融入 CRUD 的代码,我有以下用于删除项目的代码: Form->postLink(__('Delete'), array('controller'=>'attachments', 'actio
我正在使用 cakephp 2。 是否可以使用表单助手 postLink 函数来更新记录?基本上我想要一个“批准”按钮,将记录的“批准”字段更改为 1。 我能找到的一切都只与执行删除功能有关?文档也没
我想在如下表单中创建一个 Cakephp 删除帖子链接。但是当我在浏览器中检查并且无法删除时,第一个删除帖子按钮不包括删除表单,但其他按钮包括我想要的并且可以删除。 是 cakephp 错误还是我需要
我创建了简单的指令: angular.module('app').directive('field', function () { return { restrict: 'E'
我正在尝试学习 angular 1.5 组件,但遇到了一个问题。以下代码是我的组件的启动布局,使用我的 gruntjob 编译时没有错误。 angular.module('layout',[]).co
当我尝试在后链接帮助程序中将转义设置为 false 时,JavaScript 警报似乎在 Chrome 中中断,不知道为什么,因为我没有收到任何控制台错误,它只是在没有初始警报的情况下触发操作。 ec
我想使用 cakePHP 的 formHelper::postLink 函数输出一个带有超链接的图像,而不仅仅是一个文本超链接。 有人知道怎么做吗?我尝试了多种方法,但无法正常工作。 Form->po
我正在尝试为 JustGauge 创建指令在 AngularJS 中。我的 html View 是这样的: 我的指令是: angular.
将这个 repo 用于 Angular 样板 https://github.com/AngularClass/NG6-starter 但我发现很难访问 Angular component 的 $pos
我目前正在从 Angular.JS (1.5) 升级到 Angular 2+。我在 IComponentController 中遇到了 $postLink 方法,我试图弄清楚 Angular 2+ 中
更新:我悬赏这个问题。我不是在寻找黑客或解决方法。我正在寻找一种官方方式来访问 Angular 组件中的 dom,并解释为什么我看到的行为($postLink 运行到早期)似乎与官方文档相矛盾。 官方
有没有人找到一种方法来拦截默认的 Form::postLink() 表单与 Jquery? 我希望表单在没有 JS 的情况下工作(因此是 postLink)。 但是启用 JS 后,我想拦截帖子并通过
鉴于以下情况: var Panda; (function (Panda) { "use strict"; var BulkCaptureComponentController = (f
鉴于以下情况: var Panda; (function (Panda) { "use strict"; var BulkCaptureComponentController = (f
这是我的帖子链接标签: Form -> postLink(__('Update'), array( 'controller'=>'us
我正在尝试使用 Jasmine 对 AngularJS 指令进行单元测试。该指令旨在使用 D3js 在 postLink 阶段将 SVG 元素添加到模板中。这在实际应用中效果很好。 在单元测试中,D3
这给了我想要的: Html->link( $this->Html->tag('i', '', array('class' => 'glyphicon glyphicon-edit')) . "
我是一名优秀的程序员,十分优秀!