Form Example Plugin
- 授权协议: 未知
- 开发语言:
- 操作系统: 未知
- 软件首页: http://plugins.jquery.com/project/example
软件介绍
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 isexample).
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.
Node.js开发实战
[美] Jim R. Wilson / 梅晴光、杜万智、陈琳、纪清华、段鹏飞 / 华中科技大学出版社 / 2018-11-10 / 99.90元
2018年美国亚马逊书店排名第一的Node.js开发教程。 . Node.js是基于Chrome V8引擎的JavaScript运行环境,它采用事件驱动、非阻塞式I/O模型,具有轻量、高效的特点。Node.j s 工作在前端代码与 数据存储层之间,能够提高web应用的工作效率和 响应速度。本书以最新版Node.js 8为基础,从实际案例出发 讲解Node.js的核心工作原理和实用开发技......一起来看看 《Node.js开发实战》 这本书的介绍吧!
