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

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

Laravel中點(diǎn)擊模態(tài)后如何獲取標(biāo)簽的data-href值

Laravel中點(diǎn)擊模態(tài)后如何獲取標(biāo)簽的data-href值

PHP
Helenr 2024-01-19 20:48:25
我有一個(gè)在單擊“編輯”按鈕時(shí)打開(kāi)的模式,現(xiàn)在我想要 data-href 的值,在單擊以回顯模式主體內(nèi)部時(shí)打開(kāi)模式,我該怎么做<a href="javascript:void(0);" data-href="{{ url('admin/product_edit/'.$cat->id) }}" class="edit_product btn btn-sm btn-primary" data-toggle="modal" data-target="#editModal"> Edit</a>
查看完整描述

3 回答

?
滄海一幻覺(jué)

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

您可以使用event.relatedTarget函數(shù)有更多dynamic方法來(lái)獲取data-attributes.


您不需要在此處使用內(nèi)聯(lián)函數(shù),這可以使用本機(jī)引導(dǎo)函數(shù)onclick輕松完成,例如單擊并獲取數(shù)據(jù)屬性并在模式中顯示。jQueryshow.bs.modala


$("#editModal").on('show.bs.modal', function(event) {

  var button = $(event.relatedTarget) //Button that triggered the modal

  var getHref = button.data('href') //get button href

  $('#href').text(getHref) //show in the modal

})

現(xiàn)場(chǎng)工作演示:


$("#editModal").on('show.bs.modal', function(event) {

  var button = $(event.relatedTarget) //Button that triggered the modal

  var getHref = button.data('href') //get button href

  console.log(getHref) //{{ url('admin/product_edit/'.$cat->id) }}

  $('#href').text(getHref) //show in the modal

})

<!-- Latest compiled and minified CSS -->

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

<!-- jQuery library -->

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<!-- Popper JS -->

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

<!-- Latest compiled JavaScript -->

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


<a href="javascript:void(0);" data-href="{{ url('admin/product_edit/'.$cat->id) }}" class="edit_product btn btn-sm btn-primary" data-toggle="modal" data-target="#editModal"> Edit</a>


<!-- Modal -->

<div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" 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">

        <span id="href"></span>

      </div>

      <div class="modal-footer">

        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>

        <button type="button" class="btn btn-primary">Save changes</button>

      </div>

    </div>

  </div>

</div>


查看完整回答
反對(duì) 回復(fù) 2024-01-19
?
精慕HU

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

你可以這樣做


<a href="javascript:void(0);" data-href="/sample/url" class="edit_product btn btn-sm btn-primary" data-toggle="modal" data-target="#editModal" onclick='process(this)'> Edit</a>


function process(inp) {

    console.log(inp.getAttribute('data-href'));

}


查看完整回答
反對(duì) 回復(fù) 2024-01-19
?
慕桂英3389331

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

如果你使用 jQuery,那么你可以這樣做


let hrefVal = null


$('.edit_product').click(function () { hrefVal = $(this).data('href') })


查看完整回答
反對(duì) 回復(fù) 2024-01-19
  • 3 回答
  • 0 關(guān)注
  • 252 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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