val() 方法,获取和修改有value属性的元素,有value属性的元素有input、botton、select等。相当于JavaScript中的value。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>获取修改value</title> <script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.3.1.min.js"></script> </head> <body> <input type="text" name="hello" value="Good morning" id="hello"> <script> alert($("[name='hello']").val()); $('input:text').val("麦克斯的博客"); </script> </body> </html>