www.gusucode.com > Carbon Forum PHP轻论坛系统 v3.6.5源码程序 > Carbon-Forum-3.6.5/static/editor/dialogs/help/help.js

    /**
 * Created with JetBrains PhpStorm.
 * User: xuheng
 * Date: 12-9-26
 * Time: 下午1:06
 * To change this template use File | Settings | File Templates.
 */
/**
 * tab点击处理事件
 * @param tabHeads
 * @param tabBodys
 * @param obj
 */
function clickHandler( tabHeads,tabBodys,obj ) {
	//head样式更改
	for ( var k = 0, len = tabHeads.length; k < len; k++ ) {
		tabHeads[k].className = "";
	}
	obj.className = "focus";
	//body显隐
	var tabSrc = obj.getAttribute( "tabSrc" );
	for ( var j = 0, length = tabBodys.length; j < length; j++ ) {
		var body = tabBodys[j],
			id = body.getAttribute( "id" );
		body.onclick = function(){
			this.style.zoom = 1;
		};
		if ( id != tabSrc ) {
			body.style.zIndex = 1;
		} else {
			body.style.zIndex = 200;
		}
	}

}

/**
 * TAB切换
 * @param tabParentId  tab的父节点ID或者对象本身
 */
function switchTab( tabParentId ) {
	var tabElements = $G( tabParentId ).children,
		tabHeads = tabElements[0].children,
		tabBodys = tabElements[1].children;

	for ( var i = 0, length = tabHeads.length; i < length; i++ ) {
		var head = tabHeads[i];
		if ( head.className === "focus" )clickHandler(tabHeads,tabBodys, head );
		head.onclick = function () {
			clickHandler(tabHeads,tabBodys,this);
		}
	}
}
switchTab("helptab");

document.getElementById('version').innerHTML = parent.UE.version;