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