第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

用于添加和編輯的一種模式引導(dǎo)程序 - Upsert

用于添加和編輯的一種模式引導(dǎo)程序 - Upsert

白衣染霜花 2023-09-21 10:07:22
我有 2 個(gè)鏈接(添加和編輯客戶表單),它們觸發(fā)一個(gè)相同的引導(dǎo)模式。我的問題是,同一個(gè)引導(dǎo)模式如何檢測(cè)它是來自“添加鏈接”或“編輯鏈接”?我當(dāng)前的代碼是    <a href="" class="btn btn-default btn-rounded mb-4" data-toggle="modal" data-target="#modalCustomerForm">        Add New Customer    </a>$('#modalCustomerForm').on('shown.bs.modal', function () {    $(this).find('form')[0].reset();})
查看完整描述

1 回答

?
慕運(yùn)維8079593

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊

使用對(duì)象relatedTarget的屬性event來訪問觸發(fā)模態(tài)打開的元素


$('#exampleModal').on('shown.bs.modal', function(e){

   const buttonId = e.relatedTarget.id;

   $(this).find('.modal-body').text(`Button id = ${buttonId}`);      

});

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">


<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" ></script>

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" ></script>


<!-- Button trigger modal -->

<button id="btn_1" type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">

  Modal Button 1

</button>


<button id="btn_2" type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">

  Modal Button 2

</button>


<!-- Modal -->

<div class="modal fade" id="exampleModal"  aria-hidden="true">

  <div class="modal-dialog" role="document">

    <div class="modal-content">

      <div class="modal-header">

        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>

        <button type="button" class="close" data-dismiss="modal" aria-label="Close">

          <span aria-hidden="true">&times;</span>

        </button>

      </div>

      <div class="modal-body"></div>     

    </div>

  </div>

</div>


查看完整回答
反對(duì) 回復(fù) 2023-09-21
  • 1 回答
  • 0 關(guān)注
  • 116 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)