This commit is contained in:
guobao.jiang 2016-03-01 18:01:41 +08:00
parent d711e52ef5
commit a1ea48710d
1 changed files with 8 additions and 0 deletions

View File

@ -94,3 +94,11 @@ document.getElementById("here").scrollIntoView();
// freemarker原样输出
// ${r"${pageName}"}
// 选择的值
var checkValues = $('input[name=eachAppSource]:checked').map(function(){
return $(this).val();
}).get();
// 将,全局替换成&
"a,b,c".replace(/,/g, "&");