function btnLeftOnclick() {
var div = document.createElement("div");
div.style.height = "100%";
div.style.backgroundColor = "white";
divContent.style.display="none";
div.appendChild(document.createTextNode('这是新建立 div 中的文字。'));
divContent.parentNode.appendChild(div);
}