<input type="hidden" id="id">
var hide = document.getElementById('id'); alert(hide.value)
如果需要form提交,
hidden input
必须在form
表单里面。如果使用js的
ajax
发送请求,hidden input
可以在任意位置。
<input type="hidden" id="id">
var hide = document.getElementById('id'); alert(hide.value)
如果需要form提交,
hidden input
必须在form
表单里面。如果使用js的
ajax
发送请求,hidden input
可以在任意位置。