input 標簽和a標簽實現超鏈接的區別


a 標簽和 input 標簽都可以做鏈接點擊的。代碼:

--------------------------------------------------------------------------------------------------------------------------------------------

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>

<input type="button" onclick="location.reload()" value="重置">
<input type="button" onclick="location.href='http://www.baidu.com'" value="百度">
<a href="http://www.baidu.com">百度</a>
</body>
</html>

--------------------------------------------------------------------------------------------------------------------------------------------

 



<input>標簽里可以加入onclick 事件 用location的href 實現 與<a>標簽實現的外觀有區別,但是功能一樣!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM