icons.js
来自「browser for embedded linux」· JavaScript 代码 · 共 14 行
JS
14 行
option_icons_update = function (cfg_key) { option = document.getElementById (cfg_key); imagediv = document.getElementById ("image_"+cfg_key); new_icon = option.options[option.selectedIndex].text; /* Update the icon image */ imagediv.innerHTML = '<img src="/icons_local/'+new_icon+'" />'; /* Set the value */ post = cfg_key+'='+new_icon; jQuery.post("/icons/update", post);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?