php js 部分大小写函数对比

php:
strtolower($str)
strtoupper($str)
ucwords($str) 把每个单词的首字符转换为大写
ucfirst($str) 把字符串中的首字符转换为大写。

js:
object.toUpperCase()
object.toLowerCase()

arrayObject.join(separator) 默认‘,’ 连接 成字符串

var arr = [ "a", "b", "c", "d", "e" ];
arr = $.map(object,function(value,index){
return value + '0';
})

$.merge(arr0,arr1) 不会覆盖

$.now() 函数用于返回当前时间距1970年1月1日午夜所经过的毫秒数。

var jq = $.noConflict();
jq(document).ready(function(){
  jq("button").click(function(){
    jq("p").text("jQuery 仍然在工作!");
  });
});

你可能感兴趣的:(php js 部分大小写函数对比)