ajax的三种使用方法(代码片段)

junyi-bk junyi-bk     2022-12-01     302

关键词:

第一种 也是最古老的一种方法之一

from 表单直接提交数据到php文件里

action为路径

        <form method="post" action="./index.php">
            <input name="username" placeholder="用户名"  type="text"  >
            <input name="password"placeholder="密码" type="password">
            <input value="登录" type="submit">
        </form>

 

js提交方式

data为要传递的参数  

$.post(路径,"data":data,function(a)
    alert(a);
,"json");

 

jq提交方式

$.ajax(
   url:"./index.php",
   type:"post",
   data:username:username,
   jsonType:"json",
   success:function(a)
      alert(a)
   ,
   error:function(e)
      alert("错误");
    
);

 

解决ajax发送post请求出现403forbidden的三种方式(代码片段)

众所周知前端向后台发送post请求时,必须验证csrf,否则会报错403Forbidden。使用DjangoForm表单可以直接在表单里面添加%csrf_token%即可,要是通过Ajax发送请求又该怎么办?下面提供三种解决办法:<ulid="ddd"><li>1</li&... 查看详情

markdownjs库的三种使用方式(代码片段)

查看详情

线程的三种实现方法(代码片段)

线程的三种实现方法:(1)继承Thread类,重写run()方法;(2)实现Runnable接口,重写run()方法;(3)实现Callable接口,重写call()方法;方式一: 继承Thread类publicclassMyThreadDemopublicstaticvoidmain(String[]args)Threadthread=newMyThread();thread.... 查看详情

golanggo中绘制文本的三种方法(代码片段)

查看详情

jquery的三种初始化方法(代码片段)

第一种:1$(document).ready(function()2//dosomethings3);第二种:1$(function()2//dosomethings3);第三种:1jQuery(function($)2//dosomethings3);  查看详情

spring中@value的三种使用方式(代码片段)

Spring中@Value的三种使用方式文章目录Spring中@Value的三种使用方式@Value 的作用是什么?我们可以从 Spring官方文档 里面找到这样的一句话:接下来我们看下 @Value 注入外部属性的三种方式:1.注入普通属... 查看详情

树的三种存储方法(代码片段)

一、双亲存储结构typedefstructintdata;intparent;PTree[max_size];//P表示parent图像如下: 二、孩子链存储结构typedefstructsnode  intdata;  node*next;//指向兄弟;Son_node;typedefstruct intdata;  查看详情

创建对象的三种方法(代码片段)

#include<iostream>usingnamespacestd;classStudentpublic:Student(constchar*name,intage,floatscore);voidshow();private:staticintm_total;//静态成员变量constchar*m_name;intm_age;floatm_score;;Student::St 查看详情

hashmap的三种输出方法:(代码片段)

//1.通过Entry来遍历HashMap//Iterator<Entry<Integer,Person>>result=tmpHash.entrySet().iterator();//1.通过Entry来遍历HashMapfor(Entry<Integer,Person>result:tmpHash.entrySet())System.out.println 查看详情

查看linux内核版本的三种方法(代码片段)

方法1:unameuname-a方法2:hostnamectlhostnamectl方法3:/proc/version文件cat/proc/version 查看详情

访问像素的三种方法(代码片段)

方法一:用指针访问像素1#include<opencv2/opencv.hpp>2#include<opencv2/core/core.hpp>3#include<opencv2/highgui/highgui.hpp>4usingnamespacecv;5usingnamespacestd;6voidcolorReduce(Mat&inputImage 查看详情

必须使用初始化成员列表的三种情况(代码片段)

必须使用初始化成员列表的三种情况1、成员变量是引用int&p;2、成员变量为只读constinta;3、类中的成员变量,是另一个类的实例对象;而另一个类中没有实现无参的构造函数。 查看详情

数组去重的三种方法(代码片段)

数组去重的方法1functiondedupe(array)2returnArray.from(newSet(array));34?5dedupe([1,2,3,3]) 1letlist=[1,2,4,3,2,3,5,6,7,8,7];2?3letresult=list.sort().reduce((init,current)=>4if(init.length===0||ini 查看详情

springmvc的请求转发的三种方法(代码片段)

SpringMVC请求转发的三种方法首先明白请求转发是一次请求,地址栏不会发生变化,区别于重定向。springmvc环境自行配置。以下举例中存在如下文件/WEB-INF/pages/success.jsp请求转发的第一种情况:请求转发经过视图解析器 前端页... 查看详情

ugui更换图片的三种方法(代码片段)

//方法一:Image/pic在Assets/Resources/目录下Image_myImage;voidStart()_myImage.sprite=Resources.Load("Image/pic",typeof(Sprite))asSprite;//方法二:mySprite为外部指定的图片资源Image_myImage;Sprite_ISprite;voidStart()  _my 查看详情

jquery字体图标的三种方法(代码片段)

BootStrap框架原生图标在导入BootStrap包的同时,导入bootstrap-3.3.7-dist/css/bootstrap.css层叠样式; <buttontype="button"class="btnbtn-successglyphiconglyphicon-remove">编辑</button>FontAwesome图标的使用在http://ww 查看详情

springbootschedule定时任务实现异步的三种方法(代码片段)

前言我们创建一个定时任务实例@Component@EnableScheduling@Slf4jpublicclassSchedule@Scheduled(cron="*****?")publicvoidrun()throwsInterruptedExceptionSystem.out.println(DateUtil.format(new 查看详情

获取dom元素的三种方法(代码片段)

1<!doctypehtml>2<htmllang="en">3<head>4<metacharset="UTF-8">5<metaname="Generator"content="EditPlus?">6<metaname="Author"content="">7<metaname="Keywords"content= 查看详情