var operate_div = document.getElementById('operateDiv');
var input_ly = document.createElement("input");
input_ly.type = "button";
input_ly.setAttribute("class","button");
input_ly.setAttribute("value","导出缺陷模板");
input_ly.addEventListener("click",exportEntityTemLinYang);
input_ly.setAttribute("left","12px");
input_ly.setAttribute("font-size","13px");
input_ly.setAttribute("height","22px");
operate_div.appendChild(input_ly);