function getCheckboxLiks(className) {
var testObj = document.getElementsByClassName(className); var checkVal = []; // 多選 // var checkVal = null; 單選 var k = 0; // 多選 for (var i = 0; i < testObj.length; i++) { if(testObj[i].checked) { checkVal[k] = testObj[i].value; // 多選 k++; // 多選 checkVal = testObj[i].value; // 單選 } } return checkVal; }