Dynamic Flash Messages Sample Code 介绍
Overview
Flash messages are messages displayed in response to user interaction with a
site. Typically these are displayed as success or failure messages after
performing an action which submits a form, or in response to an attempt to
access a resource for which the user does not have permission.
Flash messages are useful and provided with several systems automatically;
turbogears, for instance, provides a tg_flash variable to all templates and
exposes a flash method which can be used to display a message on the next
page load.
This is a simple script which gives this functionality to jQuery, so you can
display flash messages in response to dynamic events such as AJAX calls.
Usage
Usage is simple. Place a div somewhere, usually where you want the flash
message to appear, with an ID of flash. After including jQuery and the
jQuery flash plugin, you can issue a variety of messages using the methods of
the jQuery.flash object.
Default behavior is to fade the message in, wait 15 seconds, then fade the
message out. If the message is an error of any kind, the message will persist.
If the mouse is within the flash message container the message will persist
until the cursor is removed. Clicking on the message will also remove it, even
if it’s an error. Issuing a flash message while one is already displayed will
remove the existing message first.
Default message types include: subtle, error, failure (fail), warning (warn),
@R_894_4045@ion (info), and success. All of these take two arguments: the label
and message. You can issue messages with custom classes by using the message
method, passing three arguments: the class, label, and message.
Sample Code
`<?xml version=”1.0” encoding=”UTF-8”?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN”
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”>
xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
`
Dynamic Flash Messages Sample Code 官网
http://plugins.jquery.com/project/flash
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。