出于某种原因,我无法让它在 IE8 下工作。在 Chrome 中运行良好。
这是我正在寻找的元素:
<input type="text" captures_name="default" name="firstname" required="S01 S02"/>
这是我正在使用的 jQuery (1.9.1):
$("input[captures_name='default'][name='firstname']") //Match
$("input[captures_name='default'][required*='S01']") //Does Not Match
$("input[captures_name='default'][required*='S02']") //Does Not Match
$("input[captures_name='default'][required='S01 S02']") //Does Not Match
我希望能够根据required
属性中的单个值找到元素。我确定我只是在看东西……有人可以借我一双眼睛吗?
在此先感谢您的帮助