jQuery:获取双或多组规则
我想获取双重或多重设置的CSS文件的规则 例如
#style1 {width:12px;}
#style2 {width:12px;}
.
.
.
#style1 {width: 12px; height:12px;}
,jquery 应该给我“#style1 被定义两次或多次”,
那么我如何直接处理网站中的 css 文件和 css 代码并检测多个设置规则?
它应该作为书签在每个网站上开箱即用
I want to get the rules of a css file that are double or multiple set
so for example
#style1 {width:12px;}
#style2 {width:12px;}
.
.
.
#style1 {width: 12px; height:12px;}
then jquery should give me "#style1 is defined double or multiple times"
so how do i process css files in a website directly and css code and detect multiple set rules?
it should work out of the box on every website as bookmarklet
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是解决方案,而是一个起点。 在这里你可以找到javascript来查找样式表中的css规则。你可以用它来检查每条规则,然后你就会到达你要去的地方。
Not a solution but a place to start. Here you can find javascript to find css rules in stylesheets. You can use that to check every rule, and you'll get to where you're going.