08 2012 档案

摘要:Object.prototype.toJSONString = function () { var a = ['{'], // The array holding the text fragments. b, // A boolean indicating that a comma is required. k, // The current key. v; // The current value. function p(s) { ... 阅读全文
posted @ 2012-08-28 15:24 hoho,SalesForce 阅读(878) 评论(0) 推荐(0)
摘要:http://www.jsfoot.com/jquery/demo/2011-09-18/demo.htmljquery 图片切换特效 鼠标点击左右按钮焦点图切换滚动 阅读全文
posted @ 2012-08-17 16:02 hoho,SalesForce 阅读(777) 评论(0) 推荐(0)
摘要:for (var i = 0; i < headerFields.length; i++) { fieldToIndex[headerFields[i]] = i; } 阅读全文
posted @ 2012-08-03 15:01 hoho,SalesForce 阅读(282) 评论(0) 推荐(0)
摘要:function CSVToArray( strData, strDelimiter,rowstoread ){ // Check to see if the delimiter is defined. If not, // then default to comma. strDelimiter = (strDelimiter || ","); // Create a regular expression to parse the CSV values. var objPattern = new RegExp( ... 阅读全文
posted @ 2012-08-01 10:40 hoho,SalesForce 阅读(631) 评论(0) 推荐(0)