Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to submit the form by jquery mvc3 background processing

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

In this article, the editor introduces in detail the "jquery how to submit the form mvc3 background processing", the content is detailed, the steps are clear, and the details are handled properly. I hope that this "jquery how to submit the form mvc3 background processing" article can help you solve your doubts, following the editor's ideas slowly in depth, together to learn new knowledge.

JQuery submit the form:

The code is as follows:

$(document) .ready (function () {

$("# btnLogin") .click (function () {

$.ajax ({

Url:'/ Home/Login'

Data:'{"account": "'+ $(" # account "). Val () +'", "psword": "'+ $(" # psword "). Val () +'"}''

Type: "post"

ContentType: "application/json;charset=utf-8"

DataType: "json"

Success: function (data) {

If (data! = "")

Alert (data)

Else

Location.href = "/ Home/Index"

}

});

});

});

Mvc3 background processing:

The code is as follows:

[HttpPost]

Public ActionResult Login (string account, string psword)

{

JsonResult result

If ("" = = account & & "= = psword)

Result = this.Json ("")

Else

{

Result=this.Json ("incorrect user or password")

}

Return result

}

Read here, the "jquery how to submit the form mvc3 background processing" article has been introduced, want to master the knowledge of this article also need to practice and use to understand, if you want to know more about the article, welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report