答案 0 :(得分:1)
要获得一个选择的值(不确定它是否是一个单选按钮,下拉选择或什么 - 我的头顶忘记了获取该值的语法,但它很容易谷歌)看看这篇文章:Get selected value in dropdown list using JavaScript?
获得该值之后,您只需编写一个提交(按钮单击)功能,如下所示:
function uploadDocument() {
var selectValue = //get the select value and store it here
valid = true;
if(document.fileTextBox.fileLoadName.value == ""){
alert ("Please attach a file to upload")
valid = false;
return;
}
if(selectValue === 'unlimited'){
loadFileAsTextUNLIMITED()
} else {
loadFileAsText()
}
}
希望这与你想要完成的事情有点接近