function   type(target) { var templet  ={ "[object Array]" :  "arry"; "[object Object]"  : "object"; "[object Number]" : "number_object"; "[objecct Boolean]" :  "boolean_object&quo…
anuglar.js ui-router 传递参数的方法有: 一: ui-sref 传递参数,传递一个参数的时候 首先路有这样写: .state('edit', { //线路编辑页面 url: '/edit?id', templateUrl: 'view/template/shopList/edit.html', controller: 'editCtrl' }) html 页面写法为: <button ui-sref="edit({id:{{item.id}}})" type=…
JavaScript在传参的时候只有一种传递方法那就是按值传递(来自红宝书第四版本) 函数在传递参数的时候会把实参的值拷贝过来一份,而基础类型数据值是存在内存中,在拷贝的时候会复制出来一份,而引用类型的值复制的时候只是浅复制,复制引用出来,所以当引用类型的值传递进函数中,在函数中改变这个引用类型的属性值的时候,函数外再去访问这个引用类型的值的时候也会改变: 代码参考 let obj = { name: 'qq' } function aa(obj){ obj.name = 'wx' } aa(o…
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>testPic</title> <s…
原则: 1. 基本类型:传值 2. 对象:传递指针 应用场景之一: 用jq选择器获取某个div后(例如:element),准备进行某些修改,之后添加到页面中去. 采取例一的方式,append后发现修改的内容没有改变. 采用例二的方式,成功修改. 举例一:传值 1.调用: .... setId(element);***.append(element); .... 2.函数 setId = function(element){ element = .....; } 举例二:传递指针 1. 调用: .…
//检测文件大小和类型 function fileChange(target){ //检测上传文件的类型 if(!(/(?:jpg|gif|png|jpeg)$/i.test(target.value))) { alert("只允许上传jpg|gif|png|jpeg格式的图片"); if(window.ActiveXObject) {//for IE target.select();//select the file ,and clear selection document.sel…
var isJson = function(obj){     var isjson = typeof(obj) == "object" && Object.prototype.toString.call(obj).toLowerCase() == "[object object]" && !obj.length;     return isjson; }…
<script language="javascript">window.onload = function () {alert("1");var u = navigator.userAgent;if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {//安卓手机alert("安卓手机");// window.location.href = "mobi…
<script language="javascript"> window.onload = function () { var n = navigator.userAgent; if (n.indexOf('Android') > -1 || n.indexOf('Linux') > -1) { console.log("安卓手机"); } else if (n.indexOf('iPhone') > -1) { console.lo…
这是一篇很基础的,大佬就不要看了,也不要喷,谢谢…