votelist.html 2.3 KB
<include file="public@header" />
</head>
<body>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#tianModal" style="margin: 10px 10px;"> 添加投票</button>
<table class="table table-bordered" style="margin: 10px 10px;">
  <caption>边框表格布局</caption>
  <thead>
    <tr>
      <th style="width: 60px;">ID</th>
      <th>投票标题</th>
      <th style="width: 150px;">操作</th>
    </tr>
  </thead>
  <tbody>

      <tr>
        <td>Tanmay</td>
        <td>Bangalore</td>
        <td>
          <button type="button" class="btn btn-default" data-toggle="modal" data-target="#myModal" onclick="" >编辑</button>
          <button type="button" class="btn btn-default" onclick="">删除</button>
        </td>
      </tr>

  </tbody>
</table>

<!-- 添加模态框(Modal) -->
<div class="modal fade" id="tianModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content" style="width: 900px;">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                <h4 class="modal-title" id="myModalLabel">添加投票</h4>
            </div>

              <div class="input-group" style="margin-top: 5px;">
                  <span class="input-group-addon">标题:</span>
                  <input type="text" class="form-control" placeholder="">
              </div>
              <div class="input-group" style="margin-top: 5px;">
                  <span class="input-group-addon">选项:</span>
                  <input type="text" class="form-control">
                  <span class="input-group-addon txuan">+</span>
              </div>

            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
                <button type="button" class="btn btn-primary">提交添加</button>
            </div>
        </div><!-- /.modal-content -->
    </div><!-- /.modal -->
</div>
<script>
  //添加选项
  $('.txuan').on('click', function() {
     $('.txuan').after("<div class='input-group' style='margin-top: 5px;'><span class='input-group-addon'>选项:</span><input type='text' class='form-control'><span class='input-group-addon jian'>-</span></div>");
  });
</script>
</body>
</html>