Auto đánh giá SGU
Anonymous
javascript
05/21/2021 1:30 AM
196 B
26
Indexable
$("input[type=radio]").each(function() {
let temp = Math.floor(Math.random() * 2);
if(temp > 0)
$(this).prop('checked', true);
});Editor is loading...
$("input[type=radio]").each(function() {
let temp = Math.floor(Math.random() * 2);
if(temp > 0)
$(this).prop('checked', true);
});