⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 matchvalue.js

📁 javascript 很酷的类库
💻 JS
字号:
isc.DynamicForm.create({    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",         validators: [{            type: "matchesField",            otherField: "password2",            errorMessage: "Passwords do not match"         }]        },        {name: "password2",         required: true,         title: "Password again",         type: "password"        },        {name: "createAccount",         title: "Create Account",         type: "button",         click: "form.validate()"        }    ]});

⌨️ 快捷键说明

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