?? hacks5_3.js
字號:
window.onload=function(){ JsBikeBean.getBikeInfo(populate);};function populate(map){ DWRUtil.removeAllOptions("bikes"); addOptionValues("bikes", map);}function addOptionValues(_id,_map){ //handle the return value as a JS object // var jMap = new Function("return "+_map)(); var sel = document.getElementById(_id); var opt = null; if(sel != null){ for(var prop in _map) { opt=document.createElement("option"); opt.setAttribute("value",_map[prop]); opt.appendChild(document.createTextNode(prop)); sel.appendChild(opt); } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -