轻量级基于原型的浮动/可调整大小的弹出窗口

时间:2009-04-30 13:43:17

标签: javascript prototypejs

实施Meebo式浮动窗户的最佳方法是什么?我更喜欢使用Prototype(但如果有一个很好的Jquery实现,我也很乐意调查它)。我希望Windows可以拖动/调整大小,并且通常“轻量级”并且响应迅速。

1 个答案:

答案 0 :(得分:1)

您可能想要在jQuery UI中查看dialog component。它是jQuery提供的官方UI库的一部分。下载jQueryjQuery UI,然后确保您在页面中引用了这两个脚本。然后,就像在jQuery对象上调用dialog()一样简单。有关详细信息,请查看dialog documentation

<script type="text/javascript">
$(function() {
   $("#dialog").dialog();
});
</script>

<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>