jQuery事件绑定汇总(包括一些无法获取事件的问题)
★ $(document).on('click', 'button[name=closeLayerOut2]', function () { ...... });
$(document).on('click', 'button[name=form-reset-button],a[name=form-reset-button]', function () { ...... });
$("form[id=importClassInfoForm] input[type=file]").on("change", function () { ...... });
$('form[id=qualityEdit-edit-form] select[id = selUndertaker]').attr("disabled", true);
$(document).on('click', '#saveBtu_add', function () { ...... });
$('a.deleteTrainingClassBtn').on('click', function () { ...... }); ★ <a href="javascript:void(0);" onclick="downFile('${c.uploadRateNoticeId}')" class="link">下载</a>
downFile = function (id) {
window.location.href = SPICA_MODULE + "/signupClassInfoController/downloadData/" + id;
}
☆ $(".className_scan_class").bind("click", function () { //适用于table 每一行的动态点击事件
//$(this).attr('data_plan_id');
});
<td title="${obj.className}">
<div data-plan-id="${obj.id}" id="className_scan_id" class="link specialTopic superPart className_scan_class">${obj.className}</div>
</td>
☆ 准确获取控件val(或者赋值):
var aa0 = $('form#signupAdd-edit-form input#classNum_add').val();
var bb0 = $('form[id=signupAdd-edit-form] input[id=classNum_add]').val();
var cc1 = $(' input[id=classNum_add]').val();
var cc2 = $(' input#classNum_add').val();
var cc3 = $(' #classNum_add').val(); ☆ button .click无法绑定事件的解决:
<button type="button" class="dialogBtu_add"><i class="fa fa-save"></i>确认</button>
//$('button.dialogBtu_add').bind("click", dialogBtu_add); //不可以
//$("a.addManInfoBtn").bind("click", addAndUpdateLayer0());//不可以:刷新界面会自动 触发事件(art-template)!
$(document).on('click', '.dialogBtu_add', dialogBtu_add);// 可以
jQuery事件绑定汇总(包括一些无法获取事件的问题)的更多相关文章
- 事件绑定的快捷方式 利on进行事件绑定的几种情况
[事件绑定快捷方式]$("button:first").click(function(){ alert(1); }); [使用on绑定事件] ① 使用on进行单事件绑定 $(&qu ...
- jQuery使用(七):事件绑定与取消,及自定事件的实现原理
实例方法: on() one() off() trigger() hover() 一.绑定事件与jQuery事件委托 $(selector).eventType(fn); $(selector).on ...
- jQuery的事件绑定命名空间
jQuery的bind的函数在实际应用中用的不是特别多,只是他可以绑定一个事件,但不会即时触发,也可以通过unbind来解除绑定.在没有看到这篇文章之前,我一直不知道原来bind也可以有命名空间.事实 ...
- JQuery实现click事件绑定与触发方法分析
原生JS通过什么方法绑定click事件? 原生js有一下三种方法为DOM对象绑定click事件, 第一种,在html中添加 onclick属性,在此属性中添加要绑定的事件函数,如下, 这种方法为htm ...
- jQuery之元素操作及事件绑定
1.操作元素之属性: ①attr读:("selector").attr("属性名"):=>getAttribute("属性名"):改: ...
- jQuery中的事件绑定的几种方式
jQuery目前有on(),bind(),delegate(),live()四种绑定方式,但是随着版本的不断更新,有的方式也相应的被淘汰掉 [band()方式绑定] 3.0版本之前的绑定方式比较常用的 ...
- 关于Jquery事件绑定的心得
今日在工作的时候,遇上了一些和事件绑定有关的问题无法解决,于是在网上找到了以下资料,稍加整理了下. 对于事件绑定,jQuery的 bind / unbind 大多数时候可能并不会用到,取而代之的是直接 ...
- jquery 深入学习笔记之中的一个 (事件绑定)
[jquery 事件绑定] 1.加入元素事件绑定 (1) 加入事件为当前元素 $('p').on('click',function(){ //code here ... }); (2) 加入事件为未来 ...
- javascript中通过匿名函数进行事件绑定
随机推荐
- SpringBoot读取war包jar包Resource资源文件解决办法
SpringBoot读取war包jar包Resource资源文件解决办法 场景描述 在开发过程中我们经常会碰到要在代码中获取资源文件的情况,而我在最近在SpringBoot项目中时碰到一个问题,就是在 ...
- WPF操作RichTextBox
http://www.cnblogs.com/wzwyc/p/6291895.html
- English trip -- VC(情景课)2 A At school
xu言: Sometimes, I feel very confused. However, there will always be a weak light in a corner to ligh ...
- 20170622xlVBA多部门分类汇总同类合并单元格
Public Sub Basic_CodeFrame() AppSettings On Error GoTo ErrHandler Dim StartTime, UsedTime As Variant ...
- Confluence 6 使用 LDAP 授权连接一个内部目录 - 成员 Schema 设置
请注意:这部分仅在拷贝用户登录(Copy User on Login)和 同步组成员(Synchronize Group Memberships)被启用后可见. 用户组成员属性(Group Membe ...
- HDU-5001 Walk (概率DP)
Problem Description I used to think I could be anything, but now I know that I couldn't do anything. ...
- HDU-1163 Eddy's digital Roots(九余数定理)
Eddy's digital Roots Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Oth ...
- 【vue系列】elementUI 穿梭框右侧获取当前选中项的值的思路
最近 做了一个需求 在查询结果的表格中,选取(可多选)一些值,获取到保单号后,打开一个elementUI的穿梭框,然后获取到所有业务员,选取一些业务员后,将上一步获取到的保单号传递给业务员. 画个示意 ...
- Laravel中不可逆的加密方法
1 //对 A 密码使用Bcrypt 加密 2 $password = Hash::make('secret'); 3 4 //你也可直接使用 bcrypt 的 function 5 $passwor ...
- SQL Server 调优系列玩转篇一(如何利用查询提示(Hint)引导语句运行)
前言 前面几篇我们分析了关于SQL Server关于性能调优的一系列内容,我把它分为两个模块. 第一个模块注重基础内容的掌握,共分7篇文章完成,内容涵盖一系列基础运算算法,详细分析了如何查看执行计划. ...