码迷,mamicode.com
首页 > 编程语言 > 详细

<a>实现按钮的javascript+jquery编程实例

时间:2017-09-21 16:43:41      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:query   new   body   turn   ret   html   enter   next   func   

涉及知识点:怎样实现让注册的function获取当前<a>,以便通过它进行其他操作

风格一:
 1.html端:

<td class="text-center"><a class="delete" data-index="‘ + trIndex + ‘" href="javascript:void(0)"><i class="fa fa-minus" aria-hidden="true"></i></a></td>    

2.javascript端:

$("body").delegate(".delete", "click", function () {
    var $this = $(this);
    if ($this.parents(‘tr‘).next().length == 0)
        return;
    $this.parents(‘tr‘).remove();
});

风格二:
1.html端

<td><a class=‘delete‘ title=‘删除‘ onclick=‘DeleteNewRow(this);‘ href=‘javascript:void(0)‘><i class=‘fa fa-minus‘ aria-hidden=‘true‘></i></a></td>

2.javascript端

function DeleteNewRow(obj) {
    $(obj).parent().parent().remove();
}

 

<a>实现按钮的javascript+jquery编程实例

标签:query   new   body   turn   ret   html   enter   next   func   

原文地址:http://www.cnblogs.com/zhuji/p/7569124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!