編輯:我已經更改了代碼,如下所示。現在沒有任何代碼似乎工作。 (即使我是做的工作,我沒有與你分享代碼)選擇選項值並將值賦給var(javascript)
function berekeningAflostabel() {
var zaaksoortMsnp;
var AflostabelPerMaand;
document.getElementById("fldZaakSoortMsnp").addEventListener("change", function() {
AflostabelPerMaand = this.value;
if(AflostabelPerMaand == 1) {
zaaksoortMsnp = "Tekst1";
}
if(AflostabelPerMaand == 2) {
zaaksoortMsnp = "Tekst2";
}
if(AflostabelPerMaand == 3) {
zaaksoortMsnp = "Tekst3";
}
if(AflostabelPerMaand == 4) {
zaaksoortMsnp = "Tekst4";
}
if(AflostabelPerMaand == 5) {
zaaksoortMsnp = "Tekst5";
}
if(AflostabelPerMaand == 6) {
zaaksoortMsnp = "Tekst6";
}
document.getElementById("fldMinimaleAfloswaardePerMaand").value = zaaksoortMsnp;
}
}
var eventZaaksoortMsnp = document.getElementById("fldZaakSoortMsnp");
eventZaaksoortMsnp.addEventListener("change", berekeningAflostabel);
提示:'=''VS =='。 –
您沒有在您提供的代碼中調用該函數! –
作爲優化,只需將值設置爲'0x'(x是數字)或至少刪除所有'if'並執行此操作:var var AflostabelPerMaand ='0'+ zaaksoortMsnp.value;'! –