摘要:
最近在做一些游戏报表的系统,主要是对excel的读取和处理操作。之前在自己的机器上做开发的时候,没有出现乱码的情况,即使是我布置到服务器上,导入,导出excel都没有出现乱码的情况后来在一位同事的机器上装了下,却出现乱码的情况,很郁闷,后来在网上看了一篇博文,就解决了。$filename = urlencode("个税表.xls");header('Content-Type: application/vnd.ms-excel');header('Content-Disposition: attachment;filename='.$filen 阅读全文
摘要:
文件名命名乱码的问题:$ua = $_SERVER['HTTP_USER_AGENT'];if(preg_match('/MSIE/',$ua)) { $file_name = str_replace('+','%20',urlencode($file_name));}文件内容有中文字符的:header('Content-Type:application/csv;charset=UTF-8');//application/vnd.openxmlformats-officedocument.spreadsheetml 阅读全文
摘要:
js取值//获取下拉列表选中项的值function getSelectedValue(name){var obj=document.getElementById(name);return obj.value; //如此简单,直接用其对象的value属性便可获取到}获取文本值<select Id="select"> <option>1</option> <option selected="selected">2</option> <option>3</option>< 阅读全文