<script> function subString(str, len, hasDot) { var newLength = 0; var newStr = ""; var chineseRegex = /[^\x00-\xff]/g; var singleChar = ""; var strLength = str.replace(chineseRegex,"**").length; for(var i = 0;i < st
js生成随即字符串 /* *js生成随即字符串原来如此简单 *toString() radix argument must be between 2 and 36 */ function uuid() { return Math.random().toString(36).substring(3, 8) } //7rh32
Grails的ajax使用json格式返回,在js中构造字符串时若放入<g:link>标签,字符串构造就会错误 如下就会发生错误,导致回调函数无法执行 function show(obj){ var id=obj.value; $.post("rtstudent",{id:id}, function(data){ var datas=eval(data); var str=""; $.each(datas,function(i,st){ str+='&l
总监的代码用的是define+module.exports,为了效率先没去了解那一块,在github上找了一款功能单一的template.js来使用 https://github.com/yanhaijing/template.js 很迷你,需要适当封装,比如: //利用template渲染//tpl_id:模板id//div_id:渲染在哪//data:数据 function render(tpl_id,div_id,data){ var tpl = document.getElementBy