今天在做项目时,遇到一个问题,checkbox选中后会把选中的值赋值给一个变量,根据这个变量的值来控制页面上一个按钮是否显示。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
var temp = "" ; for (){ var bool = "" ; //给temp赋值 if (temp == '31' ){ bool += "false" ; } } if (bool.indexOf( "false" ) >= 0){ document.getElementById( "myid" ).style.display= "none" ; } else { document.getElementById( "myid" ).style.display= "inline" ; } |