1、先准备一个json文件。
2、使用vscode创建一个html文件。
3、开始撰写js方法,使用原生javascript来处理,先处理读取json文件,之后运行这个html。
4、得到的json就是我们index.json文件中的内容。
5、为了便于查看我们json文件的内容显示在html网页中。
通过JQ框架实现打开选择图片:
function select_image(callback){
var upfile = $('<input style="display:none" type="file" accept="image/gif,image/jpeg,image/png,image/bmp,image/jpg"/>')
upfile.change(function () {
if (upfile[0].files.length == 0) return
if (upfile[0].files.size > 4096 * 1024) {
alert( '请选择大小小于4MB的图片文件')
return
}
callback()//选择图片成功后,执行该回调函数
})
upfile.click()
}