用的easyui框架,想要填完用户名光标离开时判断商品名是否重复主要不知道咋在离开事件把填的值传到后台
1 回答
GCT1015
TA贡献1827条经验 获得超4个赞
// blur 會在光標離開時觸發,就是從 focus 狀態解除時觸發
$('#productname').textbox('textbox').on('blur', function(event) {
var product_name = $(this).val()
// 這邊根據實際情況作修改
$.ajax({
url: '...',
type: 'post',
dataType: 'json',
date: {
product_name: product_name
},
})
.done(function(res) {
// 根據 res 來判定是否重複,然後繼續其他操作,如重複提示
})
})
添加回答
举报
0/150
提交
取消