Auto đánh giá SGU

 avatar
unknown
javascript
4 years ago
146 B
9
Indexable
$("input[type=radio]").each(function() {
    let temp = Math.floor(Math.random() * 2);
    if(temp > 0)
        $(this).prop('checked', true);
});
Editor is loading...