OpenCms_Excel

来源:互联网 发布:降龙十八掌软件 编辑:程序博客网 时间:2024/06/05 19:31

http://community.csdn.net/Expert/topic/5084/5084069.xml?temp=.4589044

function exportExcel(tableid)
  {
    if (typeof(EXPORT_OBJECT)!="object")
    {
      document.body.insertAdjacentHTML("afterBegin","<OBJECT style='display:none' classid=clsid:0002E510-0000-0000-C000-000000000046 id=EXPORT_OBJECT></Object>");
    }
    with (EXPORT_OBJECT)
    {
      DataType = "HTMLData";
      HTMLData =tableid.outerHTML;
    try
    {
      ActiveSheet.Export("d://表格.xls", 0);
      alert('成功导出EXCEL表格!');
    }catch (e){
   
    }
    }
  }
*******************************************************************************************************************************

aresartemis 

原创粉丝点击