<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<input type="text">
<button>获取</button>
<script type="text/javascript" src="../jquery-3.2.1.js"></script>
<script type="text/javascript">
$(function () {
$("button").click(function () {
// val() 取赋值
console.log($("input").val())
$("input").val("填写的内容")
})
})
</script>
</body>
</html>
上述运行结果: