是否可以在jQuery UI對話框中設置按鈕的ID,以便以後可以通過jQuery來引用它們?例如,觸發事件,禁用等?設置jQuery UI對話框按鈕ID?
... in the dialog setup ...
buttons: {
"Sök": function() {
var bValid = true;
},
"OK": function() {
if (OK()) {
getStuffNoteringar($("#txtStuffId").val());
$(this).dialog("close");
}
}
.... later on in some javascript code....
$('#OK').click();
尼斯不知道會工作不證明,但它確實。 – GillesC 2012-04-25 09:37:02
[文檔](http://jqueryui.com/demos/dialog/#option-buttons)不說有關身份證,但它有文本,並單擊:) – mprabhat 2012-04-25 09:38:03
是的,但這兩個都不是屬性,所以我想設置屬性不起作用。很高興能夠了解這種無證的功能。從文檔中遺漏的那些永遠是最好的知道:) – GillesC 2012-04-25 09:42:14