一聚教程网:一个值得你收藏的教程网站

热门教程

Jquery 选择器中使用变量的例子

时间:2022-11-14 22:03:15 编辑:袖梨 来源:一聚教程网

老外写的

代码如下 复制代码


$("#" + this.id).hide();

OR you can do something like this.

var id = this.id;

$('#' + id).hide();

OR you can give some effect also.

$("#" + this.id).slideUp();

If you want to remove the entire element permanently form the page.

$("#" + this.id).remove();

You can also use it in this also.

$("#" + this.id).slideUp('slow', function (){
$("#" + this.id).remove();
});

html

代码如下 复制代码


















用户名 状态
张三 正常
李四 冻结
王二麻子 冻结

js代码

代码如下 复制代码

热门栏目