0

我想使用jQuery创建对话框,它可以在java中创建like和object。

var popupObject = $.popup({option1:'dd', option2: 'ccc'});

然后我可以像这样控制弹出窗口:

popupObject.show();
popupObject.hide();

我需要这种编码风格来应用于 JSF 控制。

我如何在 jQuery 中编码?

请帮帮我,我找了很久。

4

2 回答 2

1

jQuery有很多好的弹出框功能这里有一个列表或10个带有现成源代码和Demo的各种弹出框,你也可以试试jQuery UI

于 2012-11-24T17:28:31.577 回答
0

你可以试试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>
于 2012-11-24T17:22:08.200 回答