gpt4 book ai didi

javascript - 在html中连接Js

转载 作者:行者123 更新时间:2023-11-30 14:18:36 25 4
gpt4 key购买 nike

我在这里使用了一个 fancybox:

@foreach($galleries as $gallery)
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
@if($id != null)
<a id="{{$id}}" class="fancybox-buttons img-holder small-img" rel="gallery" title="" data-fancybox-group="button"
href="/storage/galleries/{{$gallery->image}}">
@else
<a id="{{$gallery->id}}" class="fancybox-buttons img-holder small-img" rel="gallery" title="{{$gallery->id}}" data-fancybox-group="button"
href="/storage/galleries/{{$gallery->image}}">
@endif
<img src="/storage/galleries/{{$gallery->image}}" alt="img">
</a>
</div>
@endforeach

我有一个 fancybox 函数并且 afterload 选项有一个这样的共享链接:

afterLoad : function() {
id = this.title;
this.title =
'<a href="https://twitter.com/intent/tweet?url={{ urlencode(Request::fullUrl())}}/(id variable)" class="btn btn-tw btn-small"><i class="fa fa-twitter right-fa"></i> Share</a>';

}

我想将这个变量 id 添加到 href 中,如果 php 有另一种解决方法,那也很好

最佳答案

您可以像这样包含 id :

'<a href="https://twitter.com/intent/tweet?url={{ urlencode(Request::fullUrl())}}/' + id + '" class="btn btn-tw btn-small"><i class="fa fa-twitter right-fa"></i> Share</a>';

关于javascript - 在html中连接Js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53130821/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com