我想知道如何在循环表单中单独发出ajax请求,当我单击指定的行删除按钮时,它能够发送异步删除请求。当我使用 jquery 单击按钮时,不确定如何分配身份。
foreach(var item in Model){
<form>
<input type="text" id="id" name="id" value="item.id"/>
<input type="button" id="btn" name="submit" value="Delete"/>
</form>
}
<script>
$("#btn").click(function(){
// alert the id value
});
</script>
慕娘9325324
喵喵时光机
相关分类