gpt4 book ai didi

JavaScript/Jquery : How to find line-through words

转载 作者:太空宇宙 更新时间:2023-11-04 14:10:13 26 4
gpt4 key购买 nike

我正在尝试在 HTML 页面中查找划线的单词。

我知道如何找到 CSS 属性

$(el).css('text-decoration');

返回

line-through solid rgb(64, 64, 64) 

问题是颜色可能不同,纯色也可能不同。所以我需要这样的东西:

 $(el).css('text-decoration').contains('line-through');

但这行不通

最佳答案

因为 .css() 返回一个字符串必须使用 javascript 字符串方法。

有很多在那里挑选一个。 indexOf,匹配,正则表达式

$(el).css('text-decoration').indexOf('line-through') // returns -1 if not found 

关于JavaScript/Jquery : How to find line-through words,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20828650/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com