Auto đánh giá SGU
unknown
javascript
5 years ago
146 B
16
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);
});