<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="jquery-3.4.1.js"></script>
<script>
$(document).ready(function () {
$('button').eq(0).click(function () {
$('input').val("dzmdzmdzm");
})
$('button').eq(1).click(function () {
var str = $('input').val();
$('span').html(str)
})
})
</script>
</head>
<body>
<button>插入默认字符串</button>
<input class="txt" type="text" placeholder="请输入">
<button>获取</button>
<span></span>
</body>
</html>
