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

有帮助吗?

解决方案

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

<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>
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top