function iptDom() { var iptValue = getIptValue(); console.log(iptValue)
AddUl();
createHintContent();
}function getIptValue() { // 注意獲取input中的內(nèi)容要用value
return emailIpt.value;
}function AddUl() { for(j = 0,len=postfixList.length; j < len; j++) { let li = document.createElement('li');
li.innerText = `${iptValue}${postfixList[j]}`;
emailWrapper.appendChild(li);
}
}請問這個iptValue變量為什么報(bào)錯未定義?我的理解是addUl()函數(shù)里使用的這個iptValue變量應(yīng)該能從外層作用域(iptDom這個函數(shù)作用域)里獲取到,請問我的理解哪里有錯誤
變量作用域的問題
慕碼人8056858
2018-08-01 09:16:15