最小化/最大化 div
我在一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您正在寻找类似 this... 使用原型的模态窗口
I assume you are looking for something like this... modal windows using prototype
使用 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