2

谁能帮我解决这个问题.... 我的表单中有两个输入字段。其中一个是隐藏的,我想用一个按钮显示它。现在,当我尝试使用 onClick() 函数显示它时,它没有响应...

任何人都可以给我代码片段来这样做....

<!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>
<script>
function show()
{
document.getElementById('passwd').style.display="block" ;
}
</script>
</head>
<body>
<form action="demo.html" >
<input type="text" name="user" />
<br />
<input type="text" id="passwd" name="password"  style="display:none;" />
<input type="button" onClick="show()" name="show" value="show" />
<br />
<input type="submit" value="OK" />
</form>
</body>
</html>

请帮助

4

5 回答 5

5

这是因为您的<input>声明:

<input type="button" onClick="show()" name="show" value="show" />

当您调用show()JavaScript 时,将首先尝试解析符号show;因为您是show()从内联代码调用的,所以解析发生在 中document,它尝试根据输入框的nameorid属性解析符号。

解决方案

重命名按钮:

<input type="button" onClick="show()" name="showbutton" value="show" />

重命名函数:

function showPasswordInputBox()
{
  // your code here
}

<input type="button" onClick="showPasswordInputBox()" name="show" value="show" />

不要使用内联代码:

function show()
{
  // whatever
}

var showButton = document.getElementsByName('show')[0];

showButton.addEventListener('click', show, false);

也可以看看

不要给事件处理程序与字段同名!

Javascript 函数和表单名称冲突

于 2013-02-04T06:58:43.613 回答
0

javascript 中 show() 函数的命名约定存在问题。因为只需将名称更改为 show1()。它会工作的

function show1()
{
 alert("ok");
}
<input type="button"  name="show" value="show" onclick="show1()" />
于 2013-02-04T07:05:04.327 回答
0

您可以使用jquery并编写以下代码:$("#passwd").show() 或者您可以使用addClass('here_css_class')和 css 代码.here_css_class{ display: block }

于 2013-02-04T07:26:24.097 回答
0
try this 

<!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>
<script>
function show()
{
document.getElementById('passwd').style.display="block" ;
}
</script>
</head>
<body>
<form action="demo.html" >
<input type="text" name="user" />
<br />
<input type="text" id="passwd" name="password"  style="display:none;" />
**<button onClick="show()" >Show</button>**
<br />
<input type="submit" value="OK" />
</form>
</body>
</html>
于 2013-02-04T07:51:39.773 回答
-2

你需要使用这个:

onClick="javascript:show();"

或者干脆

onClick="show();"

基本上,只需添加分号:)

于 2013-02-04T06:53:08.783 回答