将带有 jquery 的事件侦听器添加到生成的动态 href
add event listener with jquery to generated dynamycally href
我有许多使用 php 动态生成的 href,我需要点击事件侦听器。
这不是什么大问题,但是当我尝试点击其中一个时,总是返回相同的数据。
我有这个:
$(".qrCode").click(function(e) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
$.ajax({
url: "{{ route('restaurants.qrcodes', $id) }}",
type: "GET",
success:function(response){
console.log(response);
},
error: function(jqXHR, textStatus, errorThrown){
if (jqXHR.status === 0) {
alert('Not connect: Verify Network.');
} else if (jqXHR.status == 404) {
alert('Requested page not found [404]');
} else if (jqXHR.status == 500) {
alert('Internal Server Error [500].');
} else if (textStatus === 'parsererror') {
alert('Requested JSON parse failed.');
} else if (textStatus === 'timeout') {
alert('Time out error.');
} else if (textStatus === 'abort') {
alert('Ajax request aborted.');
} else {
alert('Uncaught Error: ' + jqXHR.responseText);
}
}
});
});
我的html是:
<a data-toggle="tooltip" data-placement="bottom" title="{{trans('lang.restaurant_qrcodes')}}" href="{{ route('restaurants.qrcodes', $id) }}" target="_blank" class='btn btn-link qrCode'>
<i class="fa fa-qrcode"></i>
</a>
更新
但我需要点击 href id 12 转到 id 12,现在总是转到 id 11。我想我可以做一个 each
但我不知道我该怎么做。
我需要这个,用于在 web 执行操作时加载一个 gif 动图
感谢帮助
使用方法 unbind() 我知道我只能 select 我想要的一个 href
解决方案:
$(".qrCode").unbind().click(function(event) {
event.preventDefault();
console.log($(this).attr('href'));
});
我有许多使用 php 动态生成的 href,我需要点击事件侦听器。
这不是什么大问题,但是当我尝试点击其中一个时,总是返回相同的数据。
我有这个:
$(".qrCode").click(function(e) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
$.ajax({
url: "{{ route('restaurants.qrcodes', $id) }}",
type: "GET",
success:function(response){
console.log(response);
},
error: function(jqXHR, textStatus, errorThrown){
if (jqXHR.status === 0) {
alert('Not connect: Verify Network.');
} else if (jqXHR.status == 404) {
alert('Requested page not found [404]');
} else if (jqXHR.status == 500) {
alert('Internal Server Error [500].');
} else if (textStatus === 'parsererror') {
alert('Requested JSON parse failed.');
} else if (textStatus === 'timeout') {
alert('Time out error.');
} else if (textStatus === 'abort') {
alert('Ajax request aborted.');
} else {
alert('Uncaught Error: ' + jqXHR.responseText);
}
}
});
});
我的html是:
<a data-toggle="tooltip" data-placement="bottom" title="{{trans('lang.restaurant_qrcodes')}}" href="{{ route('restaurants.qrcodes', $id) }}" target="_blank" class='btn btn-link qrCode'>
<i class="fa fa-qrcode"></i>
</a>
更新
但我需要点击 href id 12 转到 id 12,现在总是转到 id 11。我想我可以做一个 each
但我不知道我该怎么做。
我需要这个,用于在 web 执行操作时加载一个 gif 动图
感谢帮助
使用方法 unbind() 我知道我只能 select 我想要的一个 href
解决方案:
$(".qrCode").unbind().click(function(event) {
event.preventDefault();
console.log($(this).attr('href'));
});