Teacher, what is the difference between the following two methods? If it is to position the Input, which one is better?
$("input[class='one']").css();
$(".one").css();
< input class="one" type="text"/>
No difference: an object found by element and an object node found by CLASS
No difference: an object found by element and an object node found by CLASS