扫码关注官方订阅号
七牛云 js 绑定事件触发事件,需要绑定什么事件,触发什么方法,求大神解答。
认证0级讲师
设置取消上传,暂停上传 在index.html中加入者两个控制按钮:
<a class="btn btn-default btn-lg " id="up_load" href="#" > <span>确认上传</span> </a> <a class="btn btn-default btn-lg " id="stop_load" href="#" > <span>暂停上传</span> </a>
然后在main.js文件里面绑定这两个按钮,添加代码如下:
$('#up_load').on('click', function(){ uploader.start(); }); $('#stop_load').on('click', function(){ uploader.stop(); });
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
设置取消上传,暂停上传
在index.html中加入者两个控制按钮:
然后在main.js文件里面绑定这两个按钮,添加代码如下: