<html>
<body>
<div id='parent'>
<div class='pin'>
</div>
</div>
</body>
<script>
var oPin = document.createElement('div')
oPin.className = 'pin'
oParent.appendChild(oPin)
var oImg = document.createElement('img')
loadImg('./image/'+ data[i].src,callBack,oImg) //这里是你的图片地址
oImg.src = './image/'+ data[i].src
oPin.appendChild(oImg)
</script>
</html>
<!doctype html><html>
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<script src="jquery-3.1.1.min.js"></script>
</head>
<body>
<h3>请选择图片文件:JPG/GIF</h3>
<form name="form0" id="form0" >
<input type="file" name="file0" id="file0" multiple="multiple" />
<br><br><img src="" id="img0" width="120">
</form>
</body>
<script>
$("#file0").change(function(){
var objUrl = getObjectURL(this.files[0])
console.log("objUrl = "+objUrl)
if (objUrl)
{
$("#img0").attr("src", objUrl)
$("#img0").removeClass("hide")
}
})
//建立一个可存取到该file的url
function getObjectURL(file)
{
var url = null
if (window.createObjectURL!=undefined)
{ // basic
url = window.createObjectURL(file)
}
else if (window.URL!=undefined)
{
// mozilla(firefox)
url = window.URL.createObjectURL(file)
}
else if (window.webkitURL!=undefined) {
// webkit or chrome
url = window.webkitURL.createObjectURL(file)
}
return url
}
$('input').on('change',function(){
var value = $(this).val()
value = value.split("\\")[2]
alert(value)
})
</script>
</html>
1、手机的内存满了浏览器不能使用了。
2、浏览器与手机的兼容性问题导致的重新登陆一下或是卸载浏览器重新安装低版本的以适应手机的操作系统。
3、一些其他问题建议拨打微信客服电话或是联系在线客服寻求帮助。
4、终极解决办法手机备份之后恢复出厂设置不到万不得已建议不要使用。