我使用fancybox设置了一个简单的页面来显示登录表单here。它适用于所有主流浏览器,IE9除外。奇怪的是它在IE9中的本地网络服务器上运行没有问题,但在在线页面上它没有显示任何内容。
知道怎么解决吗?
答案 0 :(得分:0)
只需在页面上输入您的login.html,基本HTML标记
即可<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div>
<form action="#" method="post" id="login" class="overlay">
<h1>Login</h1>
<div id="username-password-group" class="control-group">
<label for="username" class="control-label">Benutzername:</label>
<input type="text" id="username" name="username" class="input-xlarge" />
<label for="password" class="control-label">Passwort:</label>
<input type="password" id="password" name="password" class="input-xlarge" />
</div>
<label for="remember-me" class="checkbox">
<input type="checkbox" id="remember-me" name="rememberMe" class="inline"/>
Eingeloggt bleiben
</label>
<input type="submit" value="Einloggen" class="btn btn-success" />
</form>
</div>
</body>
</html>
IE不会在没有基本HTML标记的情况下呈现页面