最小化/最大化 div

发布于 2024-09-14 16:22:25 字数 711 浏览 10 评论 0原文

我在一个 DIV 中创建了一个聊天应用程序。 现在我需要将它放置在页面底部,该页面应该最小化并显示在页面底部。最大化 任何人都可以帮助我吗

<div  style="height:40px;  width:300px;  background-color:#CC66FF; position:absolute;bottom:15px;"  >

<div id="vithu" style="height:40px;  width:200px;"></div>
<span id="error_msg"></span>
<table>
<form method="post">
<tr>
<td><input type="text" name="txt_msg_box" id="txt_msg_box" ></td>
<td><input type="button"  value="Chat" onClick="save_chat();"  /></td>
</tr>  
<input type="hidden" id="hdn_username" name="hdn_username" value="<?php echo  rand_str();?>" />
</form>
</table>
</div>

I ve created a chat appliction in one DIV.
Now i need it to be placed in the bottom of page, which should be minimised & maximized
Can any one help me

<div  style="height:40px;  width:300px;  background-color:#CC66FF; position:absolute;bottom:15px;"  >

<div id="vithu" style="height:40px;  width:200px;"></div>
<span id="error_msg"></span>
<table>
<form method="post">
<tr>
<td><input type="text" name="txt_msg_box" id="txt_msg_box" ></td>
<td><input type="button"  value="Chat" onClick="save_chat();"  /></td>
</tr>  
<input type="hidden" id="hdn_username" name="hdn_username" value="<?php echo  rand_str();?>" />
</form>
</table>
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

场罚期间 2024-09-21 16:22:25

我假设您正在寻找类似 this... 使用原型的模态窗口

I assume you are looking for something like this... modal windows using prototype

只为守护你 2024-09-21 16:22:25

使用 jQuery 将 div 的 display 属性设置为 none。隐藏 div 时添加“divNotDisplayed”类。如果存在此类,则更改其他 div 的大小。当您显示 div 并再次更改其他 div 时添加“divDisplayed”类。

宇立

Use the jQuery to set the display property of the div to none. Add "divNotDisplayed" class when you hide the div. If this class is present then alter the size of other divs. Add "divDisplayed" class when you display the div and once again alter other divs.

Udachi

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文