欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

jquery 为a标签绑定click事件示例代码_jquery

程序员文章站 2022-04-03 13:07:16
...
$(document).ready(function() {
$("a[name='del']").click(function(){
Ext.Msg.confirm('提示','你确定要删除该公告吗?',function(button,text){
if(button=='yes'){
window.location.href="/admin/note!delete.action?id=${id}";
}
});
});
$("a[class='del2']").click(function(){
Ext.Msg.confirm('提示','你确定要删除该公告吗?',function(button,text){
if(button=='yes'){
window.location.href="/admin/note!delete.action?id=${id}";
}
});
});
});

删除
删除2
相关标签: a标签 click事件