Skip to content

Instantly share code, notes, and snippets.

@tianyk
Last active March 23, 2020 07:44
Show Gist options
  • Save tianyk/e05eac845e4a0557b466621898a0d499 to your computer and use it in GitHub Desktop.
Save tianyk/e05eac845e4a0557b466621898a0d499 to your computer and use it in GitHub Desktop.
$('.order-del').each((_, btn) => {
let $btn = $(btn);
$.ajax({
url: `//order.jd.com/lazy/deleteOrder.action?orderId=${$btn.attr('_orderid')}&PassKey=${$btn.attr('_passkey')}`,
dataType: 'jsonp',
cache: false
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment