数据分析师2017-09-30 23:17:19
$("input")과 $(":input") 사이에 차이점이 있나요? ? -PHP 중국어 사이트 Q&A-$("input")과 $(":input") 사이에 차이가 있나요? ? -PHP 중국어 홈페이지 Q&A
꼭 보고 배워보세요.
阿神2016-12-20 17:27:09
$("input")只选择input标签.如:<input id="" type="" name="" /> ;
$(":input")是伪类选择,不单单是input,还包括textarea和select,button.如<input />,<textarea></textarea>,<select></select>