0

Dojo を使用して、select を含むフォームを生成します。ただし、IEで未定義の変数を取得します。私のコードは次のとおりです。

var listeRef = new dojo.data.ItemFileReadStore(
        { url : 'label_ref_json?where='+escape(' 1 ORDER BY label_ref_contents ASC') }
    );

その後:

<input 
    dojoType = "dijit.form.ComboBox"
    store = "listeRef"
    searchAttr = "label_ref_contents"
    name = "ref"
    id = "ref" 
    autoComplete = "true" 
    query = "{label_ref_contents: '*'}"
    value = "1"
    onChange = "ref_change();"
    required = "true"
    regExp = "^\d{8}[a-zA-Z]{2}$"
/>

IElisteRefは未定義だと言っていますが、なぜですか?どうもありがとう

4

0 に答える 0