EN
jQuery - get value of input field
12 points
In this article, we would like to show you how to set input field value using jQuery.
xxxxxxxxxx
1
var value = $('#my-input').val();
2
3
var value = $('#my-input').attr('value');
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
6
input {
7
padding: 10px;
8
width: 300px;
9
}
10
11
</style>
12
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
13
</head>
14
<body>
15
<input id="my-input" type="text" value="This is example value..." />
16
<script>
17
18
var input = $('#my-input');
19
var value = input.val();
20
21
console.log(value);
22
23
</script>
24
</body>
25
</html>
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
6
input {
7
padding: 10px;
8
width: 300px;
9
}
10
11
</style>
12
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
13
</head>
14
<body>
15
<input id="my-input" type="text" value="This is example value..." />
16
<script>
17
18
var input = $('#my-input');
19
var value = input.attr('value');
20
21
console.log(value);
22
23
</script>
24
</body>
25
</html>