Home > Web Front-end > Front-end Q&A > What is the usage of val in javascript

What is the usage of val in javascript

WBOY
Release: 2022-05-07 11:13:03
Original
9411 people have browsed it

There are two ways to use val in JavaScript: 1. Used to return the value attribute value of the first matching element, the syntax is "$(selector).val()"; 2. Used to set The value attribute value of all matching elements, the syntax is "$(selector).val(value)".

What is the usage of val in javascript

The operating environment of this tutorial: Windows 10 system, JavaScript version 1.8.5, Dell G3 computer.

What is the usage of val in JavaScript

The val() method returns or sets the value of the selected element.

The value of the element is set through the value attribute. This method is mostly used for input elements.

If this method does not set parameters, it returns the current value of the selected element.

Syntax

$(selector).val(value)
Copy after login
Copy after login

value Optional. Specifies the new content of the selected element.

Return the Value attribute

Return the value of the value attribute of the first matching element.

Syntax

$(selector).val()
Copy after login

Set the value of the Value attribute

$(selector).val(value)
Copy after login
Copy after login

value Set the value of the Value attribute.

Use a function to set the value of the Value attribute

$(selector).val(function(index,oldvalue))
Copy after login

function(index,oldvalue) specifies a function that returns the value to be set.

index - Optional. Accepts the index position of the selector.

oldvalue - Optional. Accepts the selector's current Value property.

The example is as follows:

<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("input:text").val("Bill Gates");
  });
});
</script>
</head>
<body>
<p>Name: <input type="text" name="user" /></p>
<button>设置文本域的值</button>
</body>
</html>
Copy after login

Output result:

What is the usage of val in javascript

##After clicking the button:

What is the usage of val in javascript

【Related recommendations:

javascript video tutorial, web front-end

The above is the detailed content of What is the usage of val in javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template