text.js

来自「完整的12个时区查询」· JavaScript 代码 · 共 19 行

JS
19
字号
/*  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 CreateText(elementOrID, spec){    var text = spec.text || '';    if (window.dashcode && dashcode.getLocalizedString) text = dashcode.getLocalizedString(text);    var element = elementOrID;    if (elementOrID.nodeType != Node.ELEMENT_NODE) {        element = document.getElementById(elementOrID);    }    element.innerText = text; }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?