我的表單輸入類型=「按鈕」/表單不工作IE 11。按鈕的位置是回到歷史記錄中的1頁。 它在Google Chrome中工作。 我在互聯網上看到IE瀏覽器在實現HTML5時遇到了一些問題,但我還沒有設法找到解決方案。輸入類型=''按鈕''在IE中不起作用11
不僅按鈕的JS部分不工作,因爲在IE11中懸停不顯示。
在小提琴的代碼:https://jsfiddle.net/Luj5sqh7/3/
<!DOCTYPE html>
<html>
<head>
<title>Stabiliteit Houtribdijk</title>
<style type="text/css" media="screen">
</style>
<div class="header">
<div class="headerleft">
<form>
<input type="button" class="button" value="Terug" onclick="history.go(-1);return true;">
</form>
</div>
<div class="headerright">
<H4>Stabiliteit dijk animatie </H4>
</div>
<!-- <div class="headerlogo">
<img src="images/Rhdhvlogo.jpg" id="rhdhvlogo"/>
</div>-->
</div>
</head>
<body>
<video onclick="this.paused?this.play():this.pause()" class="videocenter" controls>
<source src="movie/STABILITEITTotaal.mp4" type="video/mp4">
<source src="movie/STABILITEITTotaal.ogg" type="video/ogg"> Your browser does not support the video tag.
</video>
你的整個的標記類型是錯的..如果這是你真正寫的 –