1

如何转义以下特殊字符,以便可以使用 div 上的 ID 来获取表单?这是我的 cssSelector:

#form > div:nth-child(4)>div:nth-child(2) > div:nth-of-type(2) > div:nth-of-type(2)

这是html代码:

div id="form:panelGridTransactionInfo" class="ui-panel ui-widget ui-widget-content ui-corner-all"

谢谢

4

1 回答 1

7

你用这样的反斜杠转义它:

#form\:panelGridTransactionInfo > div:nth-child(4) > div:nth-child(2) > div:nth-of-type(2) > div:nth-of-type(2)

在 Java 中,重复反斜杠以在字符串中转义:

"#form\\:panelGridTransactionInfo > div:nth-child(4) > div:nth-child(2) > div:nth-of-type(2) > div:nth-of-type(2)"
于 2013-10-14T13:50:17.037 回答