我想使用jQuery创建对话框,它可以在java中创建like和object。
var popupObject = $.popup({option1:'dd', option2: 'ccc'});
然后我可以像这样控制弹出窗口:
popupObject.show();
popupObject.hide();
我需要这种编码风格来应用于 JSF 控制。
我如何在 jQuery 中编码?
请帮帮我,我找了很久。
你可以试试jQuery UI 对话框。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Dialog - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="/resources/demos/external/jquery.bgiframe-2.1.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#dialog" ).dialog();
});
</script>
</head>
<body>
<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>
</body>
</html>