0

我的表单输入类型=“按钮”/表单不工作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> 
+1

你的整个的标记类型是错的..如果这是你真正写的 –

回答

0

的probleme没有输入的,我认为这是你

z-index: -1; 

对你的身体

+0

谢谢朱利安,那解决了它! – Lout

+0

好吧,好的;)你的欢迎! –

相关问题