aaronson0612 2015-12-26 05:33 采纳率: 33.3%
浏览 1649

如何把Text里的内容通过发送按钮显示到上面的消息栏里

图片说明

信息框
        <div class="panel-body"style="height:auto">
         Panel content
          </div>
       </div>







       <div style="clear:left;height:70px">
         <button type="button" class="btn btn-success" style="float:left">发送消息</button>
         <button type="button" class="btn btn-danger" style="float:right">清空消息</button>
       </div>



  </div>
   <div style="float:right;width:30%;height:500px">   <!-- 这个是显示在线人数的界面(右上)-->


   </div>
   <div  style="width:auto; height:100px;clear:left" >   <!-- 这是输入框(位于底部)-->
   <div class="well well-lg"style="weight:75%;height:auto"><input type="Textbox" value="Text"style="height:auto;width:90%"></div>

   </div>


</div>
  • 写回答

2条回答 默认 最新

  • Go 旅城通票 2015-12-26 06:30
    关注
    
    <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.min.js"></script>
    <div class="panel-body" style="height:auto" id="body">
        Panel content
    </div>
           </div>
    
    
    
    
    
    
    
    <div style="clear:left;height:70px">
        <button type="button" class="btn btn-success" style="float:left" onclick="document.getElementById('body').innerHTML+='<br>'+document.getElementById('txt').value">发送消息</button>
        <button type="button" class="btn btn-danger" style="float:right" onclick="document.getElementById('txt').value=''">清空消息</button>
    </div>
    
    
    
      </div>
    <div style="float:right;width:30%;height:500px">
        <!-- 这个是显示在线人数的界面(右上)-->
    
    
    </div>
    <div style="width:auto; height:100px;clear:left">
        <!-- 这是输入框(位于底部)-->
        <div class="well well-lg" style="weight:75%;height:auto"><input type="text" value="Text" id="txt" style="height:auto;width:90%"></div>
    
    </div>
    
    
    </div>
    
    评论

报告相同问题?

悬赏问题

  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败