リンクから2つの変数をjquery ajax関数に渡そうとしています。しかし、これらの ajax を行う方法がわかりません。
2 つの ID を持つリンクがあります。1. 行 ID と 2 番目。ブック ID。これら 2 つの ID を jquery 関数に渡す必要があります。
どうすればこれができるか教えてください。
`//cart item displaying in a for each loop , each row have a 'remove' link with two id
//say i have $id='4dsf2323' & $bid='43' now i have to pass these two ids to my jquery function on click of a link
<a id="removeid" >Remove item from cart link</a>`
私のjquery関数
<script>
$('removeid').click(function(e) {
// prevent the default action when a nav button link is clicked
e.preventDefault();
//HOW TO GET HERE THOSE TWO IDS FROM MY ABOVE LINK ON CLICK EVENT
// ajax query to retrieve the HTML view without refreshing the page.
$.ajax({
type: 'get',
url: '/path/to/your/controller/method',
dataType: 'html',
success: function (html) {
// success callback -- replace the div's innerHTML with
// the response from the server.
$('#yourDiv').html(html);
}
});
});
</script>
***********更新**************** 出力は次のようになります