jquery如何实现ajax方式提交?

本文以jquery实现ajax方式提交为例,为大家分析ajax提交方式的具体实现,阅读完整文相信大家对jquery实现ajax方式提交有了一定的认识。

//只能点击一次
var can_click = true;
function Layui_edit(){
//数据可编辑
$(".My_edit").each(function(){
$(this).click(function () {
if(can_click) {
can_click = false;
var goodsid =this.dataset.id;
console.log(goodsid)
//变为输入框
var text = $(this).html();
$(this).html('<input type="text" class="layui-input layui-table-edit" value="' + text + '">');
$(this).children("input").val("").focus().val(text);

 //移除光标 恢复原样
                $(this).find(".layui-table-edit").blur(function () {
                    // console.log($(this));
                    var data = $(this).val();
                    $(this).parent().html(data);
                    $(this).remove();
                    can_click = true;

                    ajax_("admin/Bankgoods/updatebankpoints", {id: goodsid,bankpoints:data}, function (r) {
                        success_res(r);
                    })
                })
            }
        })
    })

}
Layui_edit();         

上文描述的就是jquery实现ajax方式提交的方法,具体使用情况还需要大家自己动手实验使用过才能领会。如果想了解更多相关内容,欢迎关注亿速云行业资讯频道!

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/190485.html

(0)
上一篇 2021年11月13日
下一篇 2021年11月13日

相关推荐

发表回复

登录后才能评论