5

我想知道是否有可用的 jQuery 插件可以在文本框为空时显示提示。

我发现的是:http ://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/ 。但是,这只是作为placeholderHTML5 属性。我正在寻找的是一个插件,它显示多个淡化提示,如http://www.wolframalpha.com/。(编辑:我的意思是文本框中的灰色文本 - 不是工具提示。)

虽然自己创建它可能不会太麻烦,但我不赞成重新发明轮子的理论 - 所以有人知道这样的插件是否已经可用?

谢谢。

4

4 回答 4

1

我自己做了一个,所以它完全符合我的需求:http: //jsfiddle.net/42t6R/2/

这很简单,但效果很好。

编辑:错误较少的新版本,为什么不将其作为插件提交:)

http://plugins.jquery.com/project/fadehints

http://jsfiddle.net/9rgHg/2/

(function( $, undefined ) {

    $.fn.fadehints = function( data, speed ) {
        var i = 0;
        var $this = $( this );
        var offset = $this.offset();
        var $input = $("<input>").css( "position",          "absolute"                 )
                                 .css( "left",              offset.left                )
                                 .css( "top",               offset.top                 )
                                 .css( "background-color",  "transparent"              )
                                 .css( "color",             "gray"                     )
                                 .css( "border",            0                          )
                                 .css( "padding",           2                          )
                                 .css( "font-size",         $this.css( "font-size"   ) )
                                 .css( "font-family",       $this.css( "font-family" ) );

        var $parent = $this.parent();
        var $div = $( "<div>" ).append( $this.detach(), $input );

        var change = function() {
            if( i >= data.length ) {
                i = 0;
            }
            $input.hide().val( data[i] ).fadeIn( 1000 );
            i++;
        };

        $this.bind( "focus keydown", function(e) {
            if( !( e.bubbles == null ) ) { // Only clear if event was triggered by user
                window.clearInterval( interval );
                $input.hide();
            }
        } );

        $input.bind( "click focus", function() {
            window.clearInterval( interval );
            $this.focus(); // $this === the real textbox
            $( this ).hide(); // $(this) === the overlap textbox
        } );

        $this.click( function() {
            $input.hide();
            window.clearInterval( interval );
        } );

        $this.blur( function() {
            window.clearInterval( interval );
            if( $this.val() === "" && $this[0] !== document.activeElement ) {
                if( !$input.is(":visible")) {
                change();
                }
                interval = window.setInterval( change, speed );
            }
        } );
        $parent.append( $div );

        change(true);
        var interval = window.setInterval( change, speed );


        return $this;
    };

})(jQuery);

$(function() {
    $('#tb').fadehints([
        "test1", "test2"
    ]);
});
于 2011-03-25T22:07:05.100 回答
0

这可能会有所帮助:http ://www.webdesignbooth.com/15-jquery-plugins-to-create-an-user-friendly-tooltip/

于 2011-03-25T16:26:04.447 回答
0

嘿,primvdb,这个呢?

于 2011-03-25T16:30:08.747 回答
0

试试这个: http: //jqueryfordesigners.com/coda-popup-bubbles/ 它应该是你要找的。

于 2011-03-25T16:30:09.537 回答