Basic Idea of modifying the form submission address using jquery

Source: Internet
Author: User

Basic Ideas:

Get the jquery object of the corresponding form by using the jquery selector, and then use the attr method to modify the corresponding action

Example 1:

The table form will be submitted to page_one.html.

After clicking "button", the table ticket address is changed to page_two.html.
Copy codeThe Code is as follows:
<! Doctype html>
<Html>
<Head>
<Meta charset = "UTF-8">
<Title> jquery test </title>
<Script src = "jquery-1.11.1.min.js"> </script>
</Head>

<Body>
<Div>
<Form action = "page_one.html" id = "qianshou">
<Input type = "text"/>
<Input type = "submit" value = "submit"/>
</Form>
</Div>
<Div>
<Button name = "update"> the address of the modified form is page_two.html. </button>
</Div>
</Body>
<Script>
Var $ fun = $ ('button [name = update] ');
$ Fun. click (function (){
('Formateid=qianshou}'{.attr('action', 'page_two.html ');
});
</Script>
</Html>

Example 2:

The actionaddress of the formobject is page_one.html, which is directly changed to page_two.html through jquery.
Copy codeThe Code is as follows:
<! Doctype html>
<Html>
<Head>
<Meta charset = "UTF-8">
<Title> jquery test </title>
<Script src = "jquery-1.11.1.min.js"> </script>
</Head>

<Body>
<Div>
<Form action = "page_one.html" id = "qianshou">
<Input type = "text"/>
<Input type = "submit" value = "submit"/>
</Form>
</Div>
</Body>
<Script>
('Formateid=qianshou}'{.attr('action', 'page_two.html ');
</Script>
</Html>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.