📄 titles.js
字号:
isc.DynamicForm.create({ ID: "exampleForm", width: 250, fields: [ {name: "username", title: "Username", type: "text", required: true, defaultValue: "bob" }, {name: "email", title: "Email", required: true, type: "text", defaultValue: "bob@isomorphic.com" }, {name: "password", title: "Password", required: true, type: "password" }, {name: "password2", required: true, title: "Password again", type: "password" } ]});isc.Button.create({ left: 300, title: "Swap titles", click: function () { exampleForm.setTitleOrientation(exampleForm.titleOrientation == "top" ? "left" : "top"); }});
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -