今天寫javascript代碼時,寫到默認參數的問題,順手就寫成了
function openNewDiv(_id,DivHtml,newDivWidth=200,newDivHeight=300){
……
}
結果發現運行不了,就在網上查了一下,原來要這樣寫,在這記錄一下!
function openNewDiv(_id,DivHtml,newDivWidth,newDivHeight){
newDivWidth = newDivWidth||200;
newDivHeight = newDivHeight||300;
……
}