ajax提交跳轉(zhuǎn):
$(function() {
? $.ajaxSetup({
? ? headers: {
? ? ? 'X-CSRF-TOKEN': '{{ csrf_token() }}'
? ? }
? });
? $("#generate").click(function() {
? ? $.ajax({
? ? ? url: "/admin/organization/generateAuthCode",
? ? ? //你的路由地址type:"post",? ? ? ? ? data:{"auth_num":$('#auth_num').val(),"organization_name":$('#organization_name').val()},? ? ? ? ? timeout:30000,? ? ? ? ? success:function(data){$("#auth_codes").val(data);? ? ? ? ? },? ? ? ? ? error:function(){console.log(data);? ? ? ? ? }? ? ? ? });? }); })
jquery-讀取form表單中的所有數(shù)據(jù)列表
$(function() {
? $('#submit').click(function() {
? ? var d = {};
? ? var t = $('form').serializeArray();
? ? $.each(t, function() {
? ? ? d[this.name] = this.value;
? ? });
? ? alert(JSON.stringify(d));
? });
});
選項(xiàng)1選項(xiàng)2