jquery click & get value of attributes of a href

http://stackoverflow.com/questions/6625667/jquery-click-get-value-of-attributes-of-a-href

/* Add a listner to Group buttons */
    $(‘a.preActNav‘).click(function() {
        alert(this.seq)
    });   

    <li><a href="#preclose4" data-theme="a" data-icon="arrow-d" data-transition="none" seq=‘1‘ class="preActNav"  ID="preActNavA">A</a></li>
    <li><a href="#preclose4" data-theme="a" data-icon="arrow-d" data-transition="none" seq=‘2‘ class="preActNav"  ID="preActNavB">B</a></li>
alert($(this).attr(‘seq‘));


Although it may be better to put seq as another data element:

<li><a href="#preclose4" data-theme="a" data-icon="arrow-d" data-transition="none" data-seq=‘1‘ class="preActNav"  ID="preActNavA">A</a></li>

So then you can do:

alert($(this).data(‘seq‘));

jquery click & get value of attributes of a href

时间: 2024-10-20 10:10:42

jquery click & get value of attributes of a href的相关文章

jquery click嵌套 事件重复注册 多次执行的问题解决

jquery click嵌套 事件重复注册 多次执行的问题解决 转载自新浪博客:http://blog.sina.com.cn/s/blog_4f925fc30100ln1o.html jquery click事件中嵌套click会重复注册内部的click事件,导致重复执行. 比如 $(...).click(function(){   $(...).click(function(){     ...//多次执行    }); });解决方法一: 每次执行完了,解除绑定,如$(...).click

jquery click()方法 语法

作用:当点击元素时,会发生 click 事件.当鼠标指针停留在元素上方,然后按下并松开鼠标左键时,就会发生一次 click.click() 方法触发 click 事件,或规定当发生 click 事件时运行的函数.大理石平台价格表 触发click事件语法:$(selector).click() 将函数绑定到click事件语法:$(selector).click(function) 参数: 参数描述function   可选.规定当发生 click 事件时运行的函数. jquery click()方

jquery click和js onclick區別

中頁面調用jquery要注意路徑 <script type="text/javascript" src="<%=basePath%>/admin/js/jquery/jquery-1.4.2.min.js"></script> js脚本只执行一次而已,至于之后点击响应那是第一次执行的时候绑定在那个按钮事件上的脚本而已,你第一次就没绑定上,以后当然也不好使 如果想在上面写的话这样 $(function(){ $("#bt&

jquery click点击事件重复执行多次

$("button[name^='privateBtn']").click(function(){ alert('demo'); //接触绑定.避免重复执行 $("button[name!='privateBtn']").unbind('click'); });

问题解决:jquery click被多次触发

$("#id").click(function(){}); $("#id").unbind("click").click(function(){});

关于jQuery.click()函数

最近接手了前同事的项目,关于使用线程控制实现代码热插拔功能! 在线程中,使用了ChatWebSocketHandler,与前台进行实时交互,今天我拿到需求是这样的,结合chatWebSocketHandler传递到页面的标识,将每一条执行之后的数据状态改写为执行成功! 前台使用$("#"+dataJson.Id).children(".state").text("成功"); 那么此处的Id是后台传来的,那么我想到的是通过Id再去后台修改状态! 

JQuery实现click事件绑定与触发方法分析

原生JS通过什么方法绑定click事件? 原生js有一下三种方法为DOM对象绑定click事件, 第一种,在html中添加 onclick属性,在此属性中添加要绑定的事件函数,如下, 这种方法为html处理事件的原始方法,使得html和js过分耦合, 即表现层代码 和 行为层代码耦合: <html> <head> <script src="./jquery.js"></script> </head> <body>

jQuery.attributes源码分析(attr/prop/val/class)

回顾 有了之前的几篇对于jQuery.attributes相关的研究,是时候分析jQuery.attr的源码了 Javascript中的attribute和property分析 attribute和property兼容性分析 jQuery.access源码分析 结构 jQuery.fn.extend({ attr: function (name, value) { }, removeAttr: function (name) { }, prop: function (name, value) {

jquery 2.1.0 源码

/*! * jQuery JavaScript Library v2.1.0 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2