我想使用jQuery创建对话框,jQuery可以在java中创建like和object。
var popupObject = $.popup({option1:'dd', option2: 'ccc'});
然后我可以像这样控制弹出窗口:
popupObject.show();
popupObject.hide();
我需要这种编码风格来应用于JSF控制。
我如何在jQuery中编码?
请帮助我,我搜索了很长时间。
答案 0 :(得分:1)
jQuery有很多很好的弹出框功能,这里有一个list or 10各种弹出框,里面有现成的源代码和Demo, 您也可以尝试jQuery UI
答案 1 :(得分:0)
您可以尝试jQuery UI dialog。
<!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>