質問する
5376 次
2 に答える
3
作業デモ http://jsfiddle.net/rES7j/show/# または http://jsfiddle.net/rES7j
スクリプト
<script type='text/javascript' src='http://code.jquery.com/jquery-1.5.js'></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/blitzer/jquery-ui.css">
コード
$(document).ready(function() {
$('#theLink').click(function(){
$( "#add-btn-dlg-panel" ).dialog( "open" );
});
$( "#add-btn-dlg-panel" ).dialog({
modal: true,
autoOpen: false,
height: 255,
width: 300,
buttons: {
"Retrieve": function() {
document.forms["forgotform"].submit();
},
Cancel: function() {
$( this ).dialog( "close" );
}
},
});
});
クロームの作業画像
</ p>
于 2012-10-17T02:20:39.523 に答える
0
jQuery UIはposition()メソッドをサポートしています:
于 2012-10-17T02:23:18.937 に答える