www.un.org/Depts/DGACM/index_spanish.htm 我想要的是:就重点而言,通过藏匿和显示,将一个投入箱变成另一个。
www.un.org/Depts/DGACM/index_spanish.htm 我获得的>: 在互联网探索者(7/8年)中,投入箱在集中关注时将几张素子移至右边。
- Works well in other browsers (obviously).
这里与我重新讨论该问题的一个环节是:
并加固; 由于不再贴切相关联线而被拆除;
来文方可在上文链接的档案中查阅,但为了方便起见,我也在此列。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="Content-language" content="en"/>
<script src="includes/jquery-1.4.2.min.js"></script>
<script>
$(document).ready(function(){
$("#index_login_dummy").focus(function(){
$(this).hide();
$( #index_login_dummy2 ).show().focus();
});
});
</script>
<style type="text/css">
.input_h {display:none;}
</style>
</head>
<body>
<div id="index_login">
<form method="post" name="index_login" action="login.php">
<input id="index_login_email" type="text" value="Email" name="email">
<input id="index_login_dummy" type="text" value="Password" name="dummy">
<input id="index_login_dummy2" type="text" class="input_h" value="Password" name="dummy"><input type="submit" class="input_button" value="Login">
</form>
</div>
</body>
</html>
+1 for a well developed question!
EDIT:
当我把形式领域列入一个表格时,它按预期运作。 我有时猜测你们必须找到解决办法,但我不明白为什么。 然而,我对不同的浏览器以不同方式提取形式投入要素的解释感到 fine惜(在IEC中,投入纽伦影响到其余部分)。
工作守则:
<div id="index_login">
<form method="post" name="index_login" action="login.php">
<table>
<tr>
<td><input id="index_login_email" type="text" value="Email" name="email"></td>
<td><input id="index_login_dummy" type="text" value="Password" name="dummy"><input id="index_login_dummy2" type="text" class="input_h" value="Password2" name="dummy"></td>
<td><input type="submit" class="input_button" value="Login"></td>
</tr>
</table>
</form>
</div>