Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将扩展器用于网络项目
所以我需要计算点击“阅读更多”之前可见的元素,有人可以帮我吗?
如果这些元素有一些类,比如“testClass”,你可以选择它们($(“.testClass”)),迭代它们(.each 函数)并验证哪个元素是可见的(使用 attr(“style”)或 css (“显示”)函数)并计算它们。您也可以通过这种方式使用“is”函数 is(":visible")。