我有一个使用 fancybox 设置的简单页面,用于在此处显示登录表单。它适用于所有主流浏览器,除了 IE9。奇怪的是,它可以在我的 IE9 本地网络服务器上正常运行,但在在线页面上却没有显示任何内容。
知道如何解决吗?
我有一个使用 fancybox 设置的简单页面,用于在此处显示登录表单。它适用于所有主流浏览器,除了 IE9。奇怪的是,它可以在我的 IE9 本地网络服务器上正常运行,但在在线页面上却没有显示任何内容。
知道如何解决吗?
只需将您的 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 标记的情况下呈现页面