我僅僅指剛檢查了打開一個對話框的jQuery UI的樣品,這是奇怪的是,需要用HTML編寫,並通過jQuery選擇閱讀的消息:jQuery用戶界面:如何打開一個對話框
http://jqueryui.com/demos/dialog/
<script>
$(function() {
$("#dialog").dialog();
});
</script>
<div class="demo">
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
我想要做的是很簡單的,我想在對話框中顯示定義爲一個js變量的字符串,像這樣:
var cmd_str = "abcdefg";
$(cmd_str).dialog();
但是,這似乎並沒有很好地工作。
這很棒,它的工作原理! – 2010-10-21 08:12:31
增加了一些解釋。 – 2010-10-21 08:22:43
你知道如何銷燬這個對話框嗎? – 2010-10-21 08:25:25