如何跳过XPath中的步骤?

时间:2016-09-16 05:39:41

标签: html xpath

CSS

以下是可能的吗?

$(function() { var docwidth = $(document).outerWidth(); var modalwidth = (docwidth > 767) ? 750 : 450; $("#psc-dialog").width(modalwidth).height(modalwidth + 25); $("#pscanvas").width(modalwidth / 10 * 9).height(modalwidth / 10 * 9); $("#psc").get(0).width = (modalwidth / 10 * 9); $("#psc").get(0).height = (modalwidth / 10 * 9); $("#psc-dialog").dialog({ autoOpen: false }); $("#psc-dialog").dialog("open"); });

2 个答案:

答案 0 :(得分:0)

使用缩写语法:

  

// 是/ descendant-or-self :: node()/的缩写。

/ul//p

https://www.w3.org/TR/xpath/#path-abbrev

答案 1 :(得分:0)

你想跳过它吗这可以是任何元素

/ul/*/p

Xpath Abbreviated