国产精品成人VA在线观看,亚洲日韩在线中文字幕综合,亚洲AV电影天堂男人的天堂,久久人人爽人人爽人人av东京热

News新聞

業(yè)界新聞動(dòng)態(tài)、技術(shù)前沿
Who are we?

您的位置:首頁(yè)      樂道系統(tǒng)FAQ      彈出模態(tài)框modal的實(shí)現(xiàn)方法及實(shí)例

彈出模態(tài)框modal的實(shí)現(xiàn)方法及實(shí)例

標(biāo)簽: 發(fā)布日期:2017-09-19 00:00:00 308

彈出模態(tài)框modal的實(shí)現(xiàn)方法及實(shí)例

一個(gè)簡(jiǎn)單的點(diǎn)擊列表修改按鈕,彈出bootstrap模態(tài)框,修改狀態(tài)傳到后臺(tái)php

 <a href="" data-toggle=" rel="external nofollow" rel="external nofollow" modal" data-target="#myModal" class="btn btn-success btn-sm edit">修改</a>
     <!-- <a href="" data-toggle=" rel="external nofollow" rel="external nofollow" modal" data-target="#myModal" class="btn btn-danger btn-xs" onclick="return confirm('刪除后無法恢復(fù),確定要?jiǎng)h除嗎')">刪除</a> -->
    </td>
  </tr>
  @endforeach
  <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
            ×
          </button>
          <h4 class="modal-title" id="myModalLabel">
              請(qǐng)修改回訪狀態(tài)
          </h4>
        </div>
        <div class="modal-body ">
      <select class="form-control" id="select">
       <option>成功</option>
       <option>未聯(lián)系</option>
       <option>失敗</option>
      </select>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">關(guān)閉
          </button>
          <button type="button" class="btn btn-primary saveId">
            提交更改
          </button>
        </div>
      </div>
    </div>
  </div>