为什么input设置成hidden属性后再javascript中就不能用document.getElementById("")访问啊
7个回答
展开全部
结果:这种是可以了。
我做了个例子:
点击后
代码如下:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="txt/html; charset=utf-8" />
</head>
<body>
<input value="隐藏域显示了" id="hidId" type ="hidden">
<input type="button" value="显示隐藏域" onclick="fun()">
</body>
<script type="text/javascript">
function fun(){
var v = document.getElementById("hidId").value;
alert(v);
}
</script>
</html>
展开全部
肯定是你写法出问题了,表单隐藏域可以用js任意操作的
建议你使用jquery来操作比较方便
<p>名称: <input type="hidden" id="test" value="菜鸟教程"></p>
<button>显示值</button>
<script>
$(document).ready(function(){
$("button").click(function(){
alert("值为: " + $("#test").val());
});
});
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input id="e" type="hidden" />
<script>
function a() {document.getElementById("e").type = "text"}
function b() {document.getElementById("e").type = "hidden"}
</script>
<a onclick="a()">a()</a>
<a onclick="b()">b()</a>
<script>
function a() {document.getElementById("e").type = "text"}
function b() {document.getElementById("e").type = "hidden"}
</script>
<a onclick="a()">a()</a>
<a onclick="b()">b()</a>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-06-14
展开全部
不的哦,我刚试了,可以的哦,你看看是不是你的JavaScript代码没有写对
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
经过测试可以访问,代码如下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<input type="hidden" id="aa" value="bb" />
<input type="button" onclick="alertValue()" value="aa"/>
</body>
<script>
function alertValue(){
alert(document.getElementById("aa").value);
}
</script>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<input type="hidden" id="aa" value="bb" />
<input type="button" onclick="alertValue()" value="aa"/>
</body>
<script>
function alertValue(){
alert(document.getElementById("aa").value);
}
</script>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询