我知道这很容易,但我看不到它.任何人都可以告诉我为什么我在以下代码中获取"属性列表后"错误"遗失}:
var $newCandleDialog = $('<div></div>')
.load('/prodash/dash_access.php?urlInit=candles/getCanStatus.php','it='+newData)
.dialog({
autoOpen: false,
title: 'Active Mode: New Candles!',
modal: true,
buttons: {
"Load new candles": function() {
$("#canHint").load('/prodash/dash_access.php?urlInit=candles/getcandles.php','q=0&show=05&strength=00');
$( this ).dialog( "close" );
}
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
Run Code Online (Sandbox Code Playgroud)
Firebug使用"取消:功能"行启动错误.
先感谢您!