Home Web Front-end JS Tutorial An example of the difference between submit() in JQuery and JS

An example of the difference between submit() in JQuery and JS

Jun 29, 2017 am 10:35 AM
javascript jquery submit

This article mainly introduces the difference between JQuery and submit() in JS. Friends who need it can refer to

ASP.NET serverControlPostback is using this piece of JS code:

The code is as follows:

var theForm = 
document
.forms['form1']; 
if (!theForm) { 
theForm = document.form1; 
} 
function doPostBack(eventTarget, eventArgument) { 
if (!theForm.onsubmit || (theForm.onsubmit() != false)) { 
theForm.EVENTTARGET.value = eventTarget; 
theForm.EVENTARGUMENT.value = eventArgument; 
theForm.submit(); 
} 
}
Copy after login


The problem I encountered today is that I want to post back before the server-side control Assign a value to one of the hidden fields to pass the value to the server .

So I added an event using JQuery's submit([[data],fn]) method, but found that it didn't work.

I tried $("form:first").submit() and found that the event function can be triggered.

What's going on? After checking the information, I found that the native function void submit() of js does not trigger the submit event. This is why there is

in the code above. The code is as follows:

if (<span style="color:#006600">!theForm.onsubmit || (theForm .onsubmit() != false</span>)) {
...
}


That’s it.

So write the added event as

The code is as follows:

$(&quot;form:first&quot;)&lt;span style=&quot;color:#006600&quot;&gt;.get(0)&lt;/span&gt;.onsubmit = function () { 
... 
};
Copy after login


That’s it.

In addition, events added using JQuery's submit([[data],fn]) can be triggered using $().submit().

The above is the detailed content of An example of the difference between submit() in JQuery and JS. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Detailed explanation of jQuery reference methods: Quick start guide Detailed explanation of jQuery reference methods: Quick start guide Feb 27, 2024 pm 06:45 PM

Detailed explanation of jQuery reference methods: Quick start guide

How to use PUT request method in jQuery? How to use PUT request method in jQuery? Feb 28, 2024 pm 03:12 PM

How to use PUT request method in jQuery?

How to remove the height attribute of an element with jQuery? How to remove the height attribute of an element with jQuery? Feb 28, 2024 am 08:39 AM

How to remove the height attribute of an element with jQuery?

jQuery Tips: Quickly modify the text of all a tags on the page jQuery Tips: Quickly modify the text of all a tags on the page Feb 28, 2024 pm 09:06 PM

jQuery Tips: Quickly modify the text of all a tags on the page

Use jQuery to modify the text content of all a tags Use jQuery to modify the text content of all a tags Feb 28, 2024 pm 05:42 PM

Use jQuery to modify the text content of all a tags

Understand the role and application scenarios of eq in jQuery Understand the role and application scenarios of eq in jQuery Feb 28, 2024 pm 01:15 PM

Understand the role and application scenarios of eq in jQuery

How to tell if a jQuery element has a specific attribute? How to tell if a jQuery element has a specific attribute? Feb 29, 2024 am 09:03 AM

How to tell if a jQuery element has a specific attribute?

Summary of commonly used file operation functions in PHP Summary of commonly used file operation functions in PHP Apr 03, 2024 pm 02:52 PM

Summary of commonly used file operation functions in PHP

See all articles