我在一个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>
答案 0 :(得分:1)
我假设您正在使用原型
寻找类似this ...模态窗口的内容答案 1 :(得分:0)
使用jQuery将div的display属性设置为none。隐藏div时添加“divNotDisplayed”类。如果存在此类,则更改其他div的大小。显示div时添加“divDisplayed”类,再次更改其他div。
Udachi