dongqianwei6664 2017-09-09 09:54
浏览 64
已采纳

更改foreach循环内的按钮文本

I have a button , when i click on that button it should change it's text.it's there inside a foreach loop. But the problem is when i click on that button first buttons text change. I want to change the specific button text which i clicked ..How do i do that?

Front-End Part

@foreach($products as $product) 
    <button onclick="this.disabled=true;    quoteAdd('{!!$product->id!!}')" id="inquireButton"  class="btn btn-danger ">Inquire</button>
@endforeach

Javascript Part

function quoteAdd(productId)
{
    $("#inquireButton").html('Save');
    //    other code ..
}
  • 写回答

2条回答 默认 最新

  • dtb81443 2017-09-09 09:59
    关注

    You need to pass button reference using this keyword to quoteAdd method like following.

    PHP

    @foreach($products as $product) 
        <button onclick="this.disabled=true; quoteAdd('{!!$product->id!!}', this)" id="inquireButton"  class="btn btn-danger ">Inquire</button>
    @endforeach
    

    JS

    function quoteAdd(productId, button) {
        $(button).text('Save');
        //other code ..
    }
    

    FYI id should be unique for each element.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部