何らかの理由で、これを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
属性の単一の値に基づいて要素を見つけられるようにしたい。何かを見過ぎていると思いますが……誰かが私に目を貸してくれませんか?
よろしくお願いします