Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
違いは何ですか
$("input[name='ABC']") // without ":" $(":input[name='ABC']") // with ":"
どちらも同じように機能しますが、コロン「:」を付けて書くべきですか、それとも付けないで書くべきですか? どちらがより正しいですか?
input<input>要素を具体的に選択するだけです。
input
<input>
:input<input>、<textarea>、<select>、およびを選択し<button>ます。
:input
<textarea>
<select>
<button>