我正在使用jQuery 1.9.1。
我正在使用电话号码“tel”的新输入类型之一
<input class="phoneUS" id="cphone" name="phone" type="tel" required/>
但是当我尝试用jQuery选择它们时:
$('input["tel"]').css('background','red');
它不起作用。所以,我在控制台上尝试它,我得到了:
Error: Syntax error, unrecognized expression: input["tel"]
答案 0 :(得分:6)
$('input[type="tel"]').css('background','red');
应该是你之后的:)你非常接近,你只需要告诉jQuery它是你正在寻找的输入类型。