II
Size: a a a
II
CM
II
II
S
<input type="text" id="my-input" value="5">
alert(1);
var input = document.querySelectorAll("#my-input");
console.log(input.innerHTML);
S
S
S
S
CM
<input type="text" id="my-input" value="5">
alert(1);
var input = document.querySelectorAll("#my-input");
console.log(input.innerHTML);
S
S
CM
${v}
; S
var input = document.querySelector("#my-input");
console.log(input);
CM
S
$(document).ready(function() { /* code here */ });
S
CM
$(document).ready(function() { /* code here */ });
S
$(document).ready(function() {
alert(1);
console.log($("#my-input").val());
});