下面是一个有效的 jQuery 选择器,并且该值已正确设置到文本框中。为什么 jQuery 选择器中的 XPath 代码不起作用?我认为 jQuery 支持 XPath。
jQuery代码工作:
$('html > body > form > div:nth-child(4) > label > input').val('hello world');
jQuery代码不起作用:
$('/html/body/form/div[4]/label/input[1]').val('hello world');
此处的文档:
http://docs.jquery.com/DOM/Traversing/Selectors
...在上面的文档中搜索此代码 ....$("/html/body//p")