PHP 切换可见性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 切换可见性相关的知识,希望对你有一定的参考价值。

<script>
var status=1;
function changeObjectVisibility(objectId, newVisibility) {
    // first get a reference to the cross-browser style object 
    // and make sure the object exists
    var styleObject = getStyleObject(objectId);
    if(styleObject) {
	styleObject.visibility = newVisibility;
	return true;
    } else {
	// we couldn't find the object, so we can't change its visibility
	return false;
    }
}

function getStyleObject(objectId) {
  // checkW3C DOM, then MSIE 4, then NN 4.
  //
  if(document.getElementById && document.getElementById(objectId)) {
	return document.getElementById(objectId).style;
   }
   else if (document.all && document.all(objectId)) {  
	return document.all(objectId).style;
   } 
   else if (document.layers && document.layers[objectId]) { 
	return document.layers[objectId];
   } else {
	return false;
   }
}

function toggle() {

	if (status==1) {
		status=0;		
		changeObjectVisibility('container','visible');
	} else {
		status = 1;
		changeObjectVisibility('container','hidden');
	}
}
</script>

以上是关于PHP 切换可见性的主要内容,如果未能解决你的问题,请参考以下文章

iOS标签可见性切换没有动画

Silverlight 4:如何切换控件可见性

VUE 切换子组件元素可见性

切换 div 的可见性属性

切换元素 onblur 和 onclick 的可见性

Javascript切换可见性多个div