3

我想为 jquery 对话框添加一个额外的属性。

$(".pipeline-dialog").dialog({
    dialogClass: "dialog_status,
    autoOpen: false
});

创建对话框时如何添加“对话框状态”等属性。

有什么方法可以做到这一点?

4

1 回答 1

4

尝试这个:

$(".pipeline-dialog").dialog({
    //initial value for custom attribute
    customAttribute: "value"
});

//get value
var customAttrValue = $(".pipeline-dialog").dialog("option", "customAttribute");

//set new value
$(".pipeline-dialog").dialog("option", "customAttribute", "new value");
于 2014-03-25T12:11:13.563 回答