如何使用jQuery UI的Highlight和Error小部件?

时间:2010-07-02 19:26:39

标签: jquery-ui

jQuery UI有一些非常方便的CSS样式用于警报和突出显示。我可以在the themeroller site看到它 - 看右边。这些样式有Javascript接口吗?我们使用硬编码的CSS吗?这记录在哪里?

是否有方法列表,cheatsheat或jQuery UI上的交互式文档以外的任何内容?

4 个答案:

答案 0 :(得分:24)

UI/Theming/API页面为所需的互动提示应用适当的CSS类: .ui-state-highlight 以突出显示 .ui-state-error 错误。您可以静态执行此操作,也可以使用.addClass('ui-state-highlight').addClass('ui-state-error')动态执行此操作。

答案 1 :(得分:4)

我已经改编了一个简短的jQuery函数来将一组给定的div(包含文本)转换为错误/高亮元素。

您可以在this jsFiddle上看到它。

这是javascript:

//function to create error and alert dialogs
function errorHighlight(e, type, icon) {
    if (!icon) {
        if (type === 'highlight') {
            icon = 'ui-icon-info';
        } else {
            icon = 'ui-icon-alert';
        }
    }
    return e.each(function() {
        $(this).addClass('ui-widget');
        var alertHtml = '<div class="ui-state-' + type + ' ui-corner-all" style="padding:0 .7em;">';
        alertHtml += '<p>';
        alertHtml += '<span class="ui-icon ' + icon + '" style="float:left;margin-right: .3em;"></span>';
        alertHtml += $(this).text();
        alertHtml += '</p>';
        alertHtml += '</div>';

        $(this).html(alertHtml);
    });
}

//error dialog
(function($) {
    $.fn.error = function() {
        errorHighlight(this, 'error');
    };
})(jQuery);

//highlight (alert) dialog
(function($) {
    $.fn.highlight = function() {
        errorHighlight(this, 'highlight');
    };
})(jQuery);

答案 2 :(得分:2)

它们只是CSS样式。您可以在后端应用它们,或使用.addClass()应用它们。

答案 3 :(得分:2)

我想再分享一个解决方案。它基于自定义小部件,允许添加标题和可自定义的图标。请尝试Fiddle或查看以下内容:

$.widget('custom.noteBox', {
options: {
    icon: true,
    state: 'highlight'
},
_create: function () {
    var icon, note = $('<p>').html(this.element.html());
    if (this.options.icon === true) {
        switch (this.options.state) {
            case 'highlight':
                icon = 'info';
                break;
            case 'error':
                icon = 'alert';
                break;
            default:
                icon = false;
        }
    } else {
        icon = this.options.icon;
    }
    if (icon) note.prepend($('<span>')
        .addClass('ui-icon ui-icon-' + icon)
        .css({
        'float': 'left',
        'margin-right': '.3em'
    }));
    var title = this.element.attr('title');
    if (title) note.prepend($('<strong>').text(title + ' '));
    this.element.addClass('ui-widget')
        .replaceWith($('<div>')
        .addClass('ui-state-' + this.options.state + ' ui-corner-all')
        .css({
        'margin-top': '20px',
        'padding': '0 .7em'
    })
        .append(note));
   }
});


$('.error').noteBox({
    state: 'error'
 });
$('.info').noteBox();
$('<div title="Note! ">I`m dynamically added #1</div>')
    .appendTo('body').noteBox({
    icon: 'folder-open'
 });
 $('<div title="Note! ">I`m dynamically added #2</div>')
    .appendTo('body').noteBox({
    state: 'error'
 });
 $('<div title="Note! ">I`m dynamically added #3</div>')
    .appendTo('body').noteBox({
    state: 'error',
    icon: 'trash'
 });