infobutton.js
来自「完整的12个时区查询」· JavaScript 代码 · 共 29 行
JS
29 行
/* This file was generated by Dashcode and is covered by the license.txt included in the project. You may edit this file, however it is recommended to first turn off the Dashcode code generator otherwise the changes will be lost. */function CreateInfoButton(elementOrID, spec){ var flipElement = elementOrID; if (elementOrID.nodeType != Node.ELEMENT_NODE) { flipElement = document.getElementById(elementOrID); } if (!flipElement.loaded) { flipElement.loaded = true; while (flipElement.firstChild) { flipElement.removeChild(flipElement.firstChild); } var onclick = spec.onclick || null; try { onclick = eval(onclick); } catch (e) { onclick = null; } flipElement.object = new AppleInfoButton(flipElement, document.getElementById(spec.frontID), spec.foregroundStyle, spec.backgroundStyle, onclick); flipElement.object.element = flipElement; } return flipElement.object;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?