개요
모든 입력, 텍스트 영역, 선택 및 버튼 요소 일치
Example
설명:
모든 입력 요소를 찾으면 다음 요소가 일치됩니다.
HTML 코드:
<form> <input type="button" value="Input Button"/> <input type="checkbox" /> <input type="file" /> <input type="hidden" /> <input type="image" /> <input type="password" /> <input type="radio" /> <input type="reset" /> <input type="submit" /> <input type="text" /> <select> <option>Option</option> </select> <textarea> </textarea> <button>Button</button> </form>
jQuery 코드:
$(":input")
결과:
[ <input type="button" value="Input Button"/>, <input type="checkbox" />, <input type="file" />, <input type="hidden" />, <input type="image" />, <input type="password" />, <input type="radio" />, <input type="reset" />, <input type="submit" />, <input type="text" />, <select> <option>Option</option> </select>, <textarea> </textarea>, <button>Button</button>, ]
이 선택기는 모든 입력 요소와 일치합니다. 예: 22e1bb649e3e439c82b64204a5f95e3f etc.
문법 구조:
$(":input")
예제 코드:
:input选择器-脚本之家
위 코드를 사용하면 버튼을 클릭한 후 입력 요소를 숨길 수 있습니다.
위 내용은 jQuery: 입력 선택기 사용에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!