1. 程式人生 > >html5-button元素

html5-button元素

數據 提交數據 eset 圖片 host for padding 最好 utf

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>button元素</title>
</head>
<body>
<form action="http://localhost">
<input type="text" name="key" placeholder="安裏屯">
<button type="submit" style="background: #f0f0f0;border-radius: 10px;padding: 10px"><img src="pic/1.png" width="10" alt="提交圖片" >提交</button>
<button type="reset">重置</button>
</form>
<!-- 表單中最好使用input提交數據
在其他大方使用button提交數據 -->
</body>
</html>

html5-button元素