<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.dzm {
border: 1px solid red;
}
</style>
<script src="jquery-3.4.1.js"></script>
<script>
$(() => {
var jqInput = $('input').eq(0);
var jqCheckbox = $('input:checkbox');
var jqBtn = $('button');
jqBtn.click(function () {
jqInput.attr('title', 111);
console.log(jqInput.attr('title'));
jqInput.attr('class', 'dzm');
console.log(jqInput.attr('class'));
jqCheckbox.prop('checked', true);
})
})
</script>
</head>
<body>
<button>绑定</button>
<input type="text">
<input type="checkbox">
</body>
</html>
