jQuery:如何从另一个对象引用变量

时间:2011-04-07 17:50:41

标签: jquery-ui

抱歉混淆。因此,对于下面的代码,问题是如何从另一个对象引用变量对象。

$("#dialog-form").dialog({
    autoOpen: false,
    height: 200,
    width: 350,
    modal: true,
    resizable: false,
    **title: myPassedVariable,**
    buttons: {
        'Yes': function() {
            var bValid = true;
            allFields.removeClass('ui-state-error');

            bValid = bValid 

            //&& checkLength(name,"company name",1,16);

            if (bValid) {
                //alert($('#cancel-test').attr("id"));
                //alert(theapptno);
                //alert(document.theform.name);
                //document.theForm.submit() ;                       
                $(this).dialog('close');

            }
        },
        No: function() {
            $(this).dialog('close');
        }
    },
    close: function() {
        allFields.val('').removeClass('ui-state-error');
    }
});

$('.cancel-appt')
    .button()
    .click(function() {
        $('#dialog-form').dialog('open');
        **myPassedVariable=this.id;**
    });

1 个答案:

答案 0 :(得分:1)

将来,请更清楚地提问。仅发布您的代码并不能真正帮助您了解您尝试过的内容或您想要的内容。

也就是说,看起来您想要更改对话框表单的标题。为此,您将使用jQuery UI对话框的选项功能,如下所示:

$('.cancel-appt')
.button()
.click(function() {
    $('#dialog-form')
        .dialog( "option", "title", this.id )
        .dialog('open');
});