與jquery-ui進行對話時,從未發生過我。我有一個div,當我使其與.dialog我得到這個錯誤字符串在jquery-ui對話框中包含無效字符
[Exception... "String contains an invalid character" code: "5" nsresult: "0x80530005 (NS_ERROR_DOM_INVALID_CHARACTER_ERR)" location: "http://localhost/include/jquery-1.5.1.min.js Line: 16"] { constructor=DOMException, code=5, more...}
我的jQuery 1.5.1與UI 1.8.13定製與裏面的所有插件的對話框。 這是在文件對話框準備
$("#dialog").dialog({
bgiframe: true,
height: 200,
width: 150,
modal: false,
show: 'blind',
hide: 'blind',
resizable: false,
position: [270,150],
autoOpen: false,
zIndex: 997,
buttons: {
"Reset": function() {
}
}
});
的代碼,這是div
<div id="dialog">some text</div>
請告訴我們你的源代碼。 – reporter
請分享你的div的代碼 – DKSan
看到調用'.dialog()'的代碼會很有幫助,它可能會導致你的參數出錯。 –