为什么这个领域显示在IE浏览器?
我看,但找不到这样的案例。
我现在用的是隐藏属性,它是仍然显示...
<input hidden="yes" value="<?php echo $sssssssss; ?>" name="ssssssssasas"></input>
为什么这个领域显示在IE浏览器?
我看,但找不到这样的案例。
我现在用的是隐藏属性,它是仍然显示...
<input hidden="yes" value="<?php echo $sssssssss; ?>" name="ssssssssasas"></input>
我想尝试更换hidden="yes"
与type="hidden"
。
<input type="hidden" value="..." name="..."></input>
尝试以这种方式
还有另一种选择,你可以用这个。
<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
您可以使用此:
<div hidden="hidden"> value </div> // this works in IE7+
CSS:
[hidden] {
display: none;
}