标签: jquery html
我在div中有大约200行文本。它有50个换行符。如果我想在JQuery中获取特定的换行符删除位置。我怎样才能做到这一点?请帮我解决这个问题。 提前致谢。
答案 0 :(得分:0)
试试这个:
$("hr").filter(function() { return $(this).css("position") == "none" })
或者:
$("hr[style$='position: none;']")
设置所有<hr>代码的样式。
<hr>