我成功地使用closest()
(http://api.jquery.com/closest/)通过标签名称找到最接近的匹配元素。它基本上通过 DOM 树向上并返回元素(如果找到)或 false:
if(jQuery(".current_element").closest("p").length){ do something... }
//if above is TRUE then .current_element is nested within at least 1 "p"
现在,我只在应用了任何标签(或者更确切地说是最接近元素的标签 - 生效的标签)时才尝试返回 TRUE style="text-align:center;"
。我怎么做?