
1.方法一:
#
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表單</title>
</head>
<body>
<form action="" style="display: grid;" method="POST">
<div>
<label for="username">賬號(hào):</label> <!-- 利用id進(jìn)行綁定 -->
<input type="text" id="username">
</div>
</form>
</body>
</html>
方法二:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表單</title>
</head>
<body>
<form action="" style="display: grid;" method="POST">
<div>
<label>賬號(hào):<input type="text" > </label>
</div>
</form>
</body>
</html>
推薦:《最受歡迎的5個(gè)html5影片教學(xué)推薦》
以上是如何將label標(biāo)籤與input標(biāo)籤進(jìn)行綁定的詳細(xì)內(nèi)容。更多資訊請(qǐng)關(guān)注PHP中文網(wǎng)其他相關(guān)文章!