js createElement 隐藏域

js createElement 隐藏域,第1张

<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就是创建了一个隐藏域。

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)

}


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存