私はこれを理解しようとしていますが、何らかの理由で私はできません。 私はJavascriptをかなり新しくしています....Javascriptのループスルーオブジェクト配列
ここは私がしたいことです。
var companyList = {};
companyList.comanyZero = {
fldStreet: "That street 0",
fldPostcode: "0000 AA",
fldCity: "Amsterdam",
fldCountry: "The Netherlands"
};
companyList.companyOne = {
fldStreet: "Street name 1",
fldPostcode: "1234 BA",
fldCity: "Amsterdam",
fldCountry: "The Netherlands"
};
if (!event.willCommit){
if (event.changeEx === "companyZero"){
this.getField("fldStreet").value = companyList.companyZero.fldStraat;
this.getField("fldPostcode").value = companyList.companyZero.fldPostcode;
this.getField("fldCity").value = companyList.companyZero.fldCity;
this.getField("fldCountry").value = companyList.companyZero.fldCountry;
}
if (event.changeEx === "companyOne"){
this.getField("fldStreet").value = companyList.companyOne.fldStreet;
this.getField("fldPostcode").value = companyList.companyOne.fldPostcode;
this.getField("fldCity").value = companyList.companyOne.fldCity;
this.getField("fldCountry").value = companyList.companyOne.fldCountry;
}
}
私のコンボボックスで選択されているものに従って値を返すループを作成することです。
これはPDFモデレートであり、ユーザーはPDF内のコンボボックスを変更でき、フィールドには正しいデータが入力されることにご注意ください。
ありますあなたの質問に配列はありません。それはおそらく混乱の一部です。 –
あなたは説明をお探しですか? – Rajesh
ここに「this」とは何ですか? – brk