helloform.js

来自「javascript 很酷的类库」· JavaScript 代码 · 共 23 行

JS
23
字号
isc.FormLayout.create({    autoFocus: true,    numCols: 3,    items:[        {            type: "text",            name: "you",            title: "Enter your name",            selectOnFocus: true,            wrapTitle: false,            defaultValue: "my friend"        },        {            type: "button",            title: "Hello",            width: 80,            startRow: false,            icon: "icons/16/message.png",            click: "isc.say('Hello ' + form.getValue('you') + '!')"        }    ]})

⌨️ 快捷键说明

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