SelectBetween

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-15 15:44:16

软件介绍

A simple extension that allows you to select elements between and including two indexes.
I've also included except, which will get all elements except for the ones specified in the range provided.

Current version is 1.0

Example usage:
This will get the rows 1 and 2, and color the elements between 2, 3, 4 and 5 and elements 10, 11, 12 and 13
$("table tr:between(1,2)").find("td:between(2,5), td:between(10,13)").css("background-color", "red");

The following will color all rows except 1 and 2 and all elements less than 2 and greater than 5.
$("tr:except(1,2)").find("td:except(2,5)").css("background-color", "green");

The plugin will automatically get the lowest value of the params passed.
So if you use :between(50, 8) it will get 8 to 50.

Note: Indexes are an interesting animal! They change based on the first selector. It might take a little time to understand indexes with jquery if you haven't dealt with them before.

本文地址:https://codercto.com/soft/d/23443.html

未来是湿的

未来是湿的

[美] 克莱·舍基 / 胡泳、沈满琳 / 中国人民大学出版社 / 2009-5 / 39.80

一位妇女丢掉了手机,但征召了一群志愿者将其从盗窃者手中夺回。一个旅客在乘坐飞机时领受恶劣服务,她通过自己的博客发动了一场全民运动。在伦敦地铁爆炸案和印度洋海啸中,公民们用可拍照手机提供了比摄影记者更完备的记录。世界上最大的百科全书是由管理甚少的参与者们撰写的…… 不论在何处,你都能看见人们走到一起彼此分享,共同工作,或是发起某种公共行动。一部集众人之力的百科全书、一个丢失手机的传奇,这些事情......一起来看看 《未来是湿的》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具