我在 Acrobat 9 中使用 JavaScript 为我的美国历史学生创建一个测试。我不想计算他们没有回答他们的答案。这是我到目前为止所拥有的:
var arrTest = "cell.1", "cell.2", "cell.3" , "cell.4"); //Will have more than four
count = 0, i = arrTest.length; while (i--) {
if (typeof arrTest[i] === "undefined")
count++;
}
BTW,有什么好的学习资料吗?