博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JQuery------$.get()和$.post()传递数据的使用方法
阅读量:6758 次
发布时间:2019-06-26

本文共 627 字,大约阅读时间需要 2 分钟。

菜鸟教程地址:

http://www.runoob.com/jquery/jquery-ref-ajax.html

 

html(../Home/Index.cshtml)

    

 

Main.js

$.get()的使用

$(document).ready(function () {
  $(".Btn").click(function () {    $.get("../Home/Index", function (data, status) {     alert("数据:" + data + ";状态:" + status);   });  }); });

 

$.post()的使用

$(document).ready(function () {    $(".Btn").click(function () {        $.post("../Home/Index",            {                name: "ww",                url:"http://www.baidu.com",            }, function (data, status) {            alert("数据:" + data + ";状态:" + status);        });    });});

 

转载地址:http://lhfeo.baihongyu.com/

你可能感兴趣的文章
jQuery获取所有父级元素及同级元素及子元素的方法
查看>>
使用AForge录制视频
查看>>
this解惑
查看>>
嵌入式第八次
查看>>
设计模式学习之一:设计模式的设计原则
查看>>
Codeforces 798A - Mike and palindrome
查看>>
算法笔记--拓扑排序
查看>>
Chapter 6、字符串(二)(1st,Mar.)
查看>>
4-3 求链式表的表长 (10分)
查看>>
[BZOJ 1491][NOI2007]社交网络(Floyd)
查看>>
libtool failed with exit code 1
查看>>
# 学号 2017-2018-20172309 《程序设计与数据结构》实验1报告
查看>>
OrderOnline——数据库设计(已更新)
查看>>
(四)虚拟存储管理器的页面调度
查看>>
python中的StringIO模块
查看>>
玩转Windows CPU占用时间 ——编程之美 读书笔记1.1
查看>>
苹果官方的图标大小的调整
查看>>
Maven整理
查看>>
观《构建之法》有感
查看>>
maven环境快速搭建(转)
查看>>