Advertisement
jiue123

Xuất table(html) ra file excel

Apr 8th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <input id="clickExXls">
  2.  
  3. $("#clickExXls").click(function(e){
  4.     window.open('data:application/vnd.ms-excel,'+encodeURIComponent($('div[id$=xlsTable]').html()));
  5.     e.prevenDefault;
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement