我想为 jquery 对话框添加一个额外的属性。
$(".pipeline-dialog").dialog({
dialogClass: "dialog_status,
autoOpen: false
});
创建对话框时如何添加“对话框状态”等属性。
有什么方法可以做到这一点?
我想为 jquery 对话框添加一个额外的属性。
$(".pipeline-dialog").dialog({
dialogClass: "dialog_status,
autoOpen: false
});
创建对话框时如何添加“对话框状态”等属性。
有什么方法可以做到这一点?
尝试这个:
$(".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");