Form Example Plugin

授权协议 未知
开发语言
所属分类 jQuery 插件、 其他jQuery插件
软件类型 开源软件
地区 不详
投 递 者 李俊雅
操作系统 未知
开源组织
适用人群 未知
 软件概览

Populate form fields with example text that disappears on focus.

Example Usage

Simple usage:

$('input#name').example('Bob Smith');

Using a custom class name instead of the default example:

$(':input').example('Fill me in!', {className: 'special_example'});

New in 1.3: specifying the example text with a callback:

$('input[@title]').example(function() {
    return $(this).attr('title');
});

Options

Supports one option:

  • className: Sets the class name of the example text for use in a stylesheet (by default it is example).

This plugin is fully compatible with the Metadata plugin, allowing you to set the example text via the example property and the standard className property in elements themselves.

<input type="text" class="{example: 'Name here', className: 'special'}">

Please see README.markdown for further information.

This plugin is compatible with jQuery 1.1 and newer.

Dual-licensed under the BSD and GPL licenses.

  • 在 jQuery Form插件可以让你很容易的使用AJAX提交Form表单,主要方法ajaxForm和ajaxSubmit负责收集表单元素的信息,管理提交进程。这 两种方法都是可配置的,让你完全控制Form提交。使用AJAX提交表单没有任何方式比JQuery Form插件更容易的了. 官网地址:www.malsup.com/jquery/form/:有文档说明和演示示例可供参考! 我简单使用了一下

  • 前章介绍了使 用AJAX提交Form表单的方法,其中主要的就是ajaxForm()和ajaxSubmit(),ajaxForm和ajaxSubmit都支持众多 的选项参数,这些选项参数可以使用一个Options对象来提供。Options只是一个JavaScript对象,它包含了如下一些属性与值的集合: Options对象的详解: 1.)target 指明页面中由服务器响应进行更新的元素。元素的值可

  • <el-form ref="ruleForm" :model="ruleForm" :rules="rules" label-width="80px" style="width:600px"> <el-form-item label="文件" ref="excel" prop="file" > <el-upload :action="uploadUrl" :limit="1" name=

  • Introduction I wrote this document because so many people in the Oracle Technology Network (OTN) Forms Forum have asked “How do I run a form from the Forms Builder?” or “I just installed Forms 10g and

  •  form表单如果动态验证的话其实现的原理是使用的是Key,Value值的方式传值的,name=key,value=value如果不设置name的话,找不到value值。   <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>登录页</title> <script src="libs/

  • https://github.com/xaboy/form-builder php formbuilder是一个很好用的工具,有了它,我们有时候可以省略去写 view层的代码,只需要在 controller 中使用 formbuilder 然后 echo  $form->view() 就可以了 然而github上面写的使用方法很简略 有很多的细节没有说到 先写一个使用方法吧 比如,我们要向 我的服

  • Forms are main elements of the Finance and Operations development platform. Many standard forms are already available in the application. You can also create new forms. Each form consists of form meth

  • 修改lable标签的样式,例如color 修改所有的lable样式 .el-form-item__label{ color: red; } 修改单个lable的样式 <el-form-item label="年龄" prop="age" class="item"> .item .el-form-item__label{ color: red; } 修改lable中部分文字

相关阅读

相关文章

相关问答

相关文档