如果你想要一个简单的没有多余装饰的模式(内容不多),你可以像这样使用 JavaScript 警报:
alert('Hello from a modal popup');
如果你想要一个更漂亮的选项,一个常见的解决方案是使用 jQuery UI 的对话框,它允许一个模式选项。在此处查看有关使用此选项获得的内容的演示:
http://jqueryui.com/demos/dialog/#modal
代码很简单;下面应该使用 Google 的 CDN 作为脚本和股票 jQuery UI CSS 的来源为您做所有事情:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function() {
$( "#details" ).dialog({
modal: true
});
});
</script>
<div id="details">
Hello from a modal popup
</div>