如何在js中帮忙创建隐藏字段hidde

如何在js中帮忙创建隐藏字段hidde,第1张

function page(){

var f = document.getElementById("b")

var input = document.createElement("input")

var text = document.createTextNode("####")

input.setAttribute("type","hidden")

input.setAttribute("value","哈哈")

input.setAttribute("id","hidden")

f.appendChild(text)

f.appendChild(input)

alert(document.getElementById("hidden").value)

}

js:

document.getElementById(id).style.display="block"显示

document.getElementById(id).style.display="none"隐藏

jquery js:

$("#"+id).show()//显示

$("#"+id).hide()//隐藏

<html>

<head>

<script type="text/javascript">

function a(){

var input = document.createElement("input")

input.type = 'hidden'

input.name = 'hiddenInput'

document.getElementById("testForm").appendChild(input)

}

</script>

</head>

<body onload="a()">

<div id='test'>

<form id='testForm'></form>

</div>

</body>

<html>

创建一个input元素,把他的type属性设成hidden就是创建了一个隐藏域。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11722363.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存