1. 程式人生 > 其它 >HTML中的單引號雙引號的區別

HTML中的單引號雙引號的區別

技術標籤:HTML/CSS

單獨的html標籤 單引號雙引號沒有區別

<html>
<head>
</head>
<body>
<input type = submit value = 提交1>
<input type = "submit" value = "提交2">
<input type = 'submit' value = '提交3'>
</body>
</html>

和JS混編的時候 最好一個單引一個雙引用來區分。