Last active
August 29, 2015 14:06
-
-
Save gaga5lala/b6ad78ffd631851f8e62 to your computer and use it in GitHub Desktop.
中山大學網路註冊問卷(題型:四選一)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inputs = document.getElementsByTagName("input") | |
var chk_input =0 | |
for (var i = 0; i < inputs.length; i++) { | |
switch (inputs[i].type) { | |
case "checkbox": | |
if (!inputs[i].checked && chk_input %4 ==0) { | |
inputs[i].checked = true; | |
} | |
chk_input +=1 | |
//inputs[i].nextSibling.onclick = function () { cbclick(this); return false; } | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
chrome F12開發者工具 :
1.在console處貼上,會自動選擇第一個選項(四選一)
2.按下送出進入下個階段
note: a.只針對四選一題型, b.不會出現打勾的圖示