0

我想使用jQuery UI 对话框来显示不同输入中的错误。我的问题是我想只定义一个对话框的功能,但将它与几个包含 id 和特定错误消息的 html 相关联。

我怎么能那样做?

目前,我有这个:

// definition of the dialog, to do only once
$( "#dialog" ).dialog({
    autoOpen: false,
    show: {effect: 'fade', speed: 100},
    hide: {effect: 'fade', speed: 100},
    modal: true,
    resizable: false,
    title: "Incorrect value",
    buttons: {  Ok: function() {    $(this).dialog( "close" );  }},
    beforeClose: function() {   $( "#time_at_address_years1" ).focus().val('')  },
});

// the event, one per input
$( "#time_at_address_years1" ).blur(function() {
    $( "#dialog1" ).dialog( "open" );
    return false;
});

一封邮件的 HTML 是这样的:

<div id="dialog">
<p>The error message here.</p>
</div>
4

1 回答 1

0

只需在函数中扭曲对话框并将该函数传递给当前的 jQuery 选择器。

function my_dialog(selector, tofocus) {
 $(selector).dialog({autoOpen:true, ...more options...});
}

比这样称呼它:

$( "#time_at_address_years1" ).blur(function() {
 my_dialog('#dialog1', '#time_at_address_years1');
 return false;
});

此外,您应该看看 jQuery-Validator-Plugin http://docs.jquery.com/Plugins/Validation

于 2012-08-08T09:12:46.567 回答