博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
百度 Web Uploader试用
阅读量:6119 次
发布时间:2019-06-21

本文共 1632 字,大约阅读时间需要 5 分钟。

hot3.png

// 初始化Web Uploader	var uploader = WebUploader.create({	    // 选完文件后,是否自动上传。	    auto: true,	    // swf文件路径	    swf: 'tpl/Wap/default/common/newclient/js/Uploader.swf',	    // 文件接收服务端。	    server: 'index.php?g=Wap&m=Store&a=put_wall_img',	    // 选择文件的按钮。可选。	    // 内部根据当前运行是创建,可能是input元素,也可能是flash.	    pick: '#picker',	    // 只允许选择图片文件。	    accept: {	        title: 'Images',	        extensions: 'gif,jpg,jpeg,bmp,png',	        mimeTypes: 'image/*'	    }	});			var wall_img;	uploader.on( 'fileQueued', function( file ) {	    var $li = $(	    		'
点击确认发送 '             ),      $img = $li.find('#pic_wall_list');     // $list为容器jQuery实例     $('.msg').append($li);     wall_img=$li;     // 创建缩略图     // 如果为非图片文件,可以不用调用此方法。     // thumbnailWidth x thumbnailHeight 为 100 x 100     uploader.makeThumb( file, function( error, src ) {         if ( error ) {             $img.replaceWith('
不能预览');             return;         }         $img.attr( 'src', src );      var height= $(document).height();    $(document).scrollTop(height);     }, 100,  100); }); uploader.on( 'uploadAccept', function( file, res ) { //alert(wall_img); var pic_url=res._raw; send=$(wall_img).find(".content_send").click(function(){ var _this=this; $.ajax({ url:"index.php?g=Wap&m=Store&a=do_put_wall_img", type:"post", dataType:"json", data:"pic_url="+pic_url, success:function(data){ if(data=="success"){ $(_this).html("发送成功"); $(_this).unbind("click");  } } }); }); })

上传图片,上传完成后返回值进行处理。

转载于:https://my.oschina.net/u/576119/blog/481351

你可能感兴趣的文章
嵌入式,代码调试----GDB扫盲
查看>>
类斐波那契数列的奇妙性质
查看>>
配置设置[Django]引入模版之后报错Requested setting TEMPLATE_DEBUG, but settings are not configured....
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
Groonga 3.0.8 发布,全文搜索引擎
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>