IE中显示隐藏字段值

时间:2012-09-04 15:33:09

标签: html internet-explorer

为什么这个字段会在IE中显示?

我看起来却找不到另一种情况。

我正在使用隐藏属性,它仍在显示......

<input hidden="yes" value="<?php echo $sssssssss; ?>" name="ssssssssasas"></input>

4 个答案:

答案 0 :(得分:11)

我尝试用hidden="yes"替换type="hidden"

答案 1 :(得分:2)

<input type="hidden" value="..." name="..."></input>

尝试这种方式

答案 2 :(得分:0)

还有另一种选择,你可以使用它。

<div hidden> value </div> // this works in IE11

但你也可以尝试,

display:none; // set this for the variable you want to hide and you can access its value

答案 3 :(得分:0)

您可以使用:

<div hidden="hidden"> value </div> // this works in IE7+ 

CSS:

[hidden] {
   display: none;
}