jQuery Undo

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-15 15:28:18

软件介绍

This plugin provides a global undo utility.

You can add undo items to the stack with:

   $.undo(callback, target, message)

Where the callback function knows how to perform the actual undo-ing when executed.  This will automatically display the message (or a default one created if that parameter is absent) and an "Undo" link within items matching the '.undo' selector (which is customizable by setting $.undo.notice.selector. If no action is taken within 60 seconds, this message is hidden. If the "Undo" link is clicked or you manually call:

   $.undo()

then the plugin will execute the callback function (passing in the target as the parameter, if a target was provided).

If you simply create an empty <div class="undo"></div> in your page and start adding undo functions to $.undo(undoAction), things should "just work" as described above.  If you want more explicit control of the displayed messages, there are a variety of settings and functions you can alter in $.undo.notice that can help you customize the behavior or plug
the functionality into your own custom markup.

To enable the use of Ctrl-z to trigger undo execution, you can call:

$.undo.supportsCtrlz(true)


By default this is disabled.

The recommended CSS for the classes involved is:

.undo {
    background: #FFF1A8;
    color: black;
    display: none;
    font-size: 85%;
    font-weight: bold;
    margin:3px 0px;;
    padding: 5px 15px;
    text-align: center;
}
.undo-message {
    text-align: center;
}
a.undo-execute {
    color: blue;
    padding: 0px 2px 0px 10px;
}
a.undo-cancel {
    font-size: 80%;
    text-decoration: none;
    vertical-align: center;
}



本文地址:https://www.codercto.com/soft/d/23442.html

学习bash

学习bash

Cameron Newham、Bill Rosenblatt / 徐炎、查石祥 / 机械工业出版社 / 2003-1-1 / 45.00

bash是自由软件基金会发布的“Bourne Again Shell”的缩写。它是流行的UNIX Bourne shell的免费可用替代产品,供全球Linux用户选用。《学习bash》正是bash的权威指南。 无论你是对bash的用户界面感兴趣,还是对其强大的编程能力感兴趣,你都会发现本书很有价值。它教授了如何使用bash的高级命令行特性,如命令历史、命令行编辑和命令完成。 本书还......一起来看看 《学习bash》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具