|

楼主 |
发表于 2017-11-10 17:08:15
|
显示全部楼层
不用new
改为if(!Browser.isX5App){
require(['./clipboard.min'], function(Clipboard){
var clipboard = new Clipboard('.x-modal-button',{
text:function(){
return text;
}
});
clipboard.on('success', function(e) {
justep.Util.hint("内容已复制到剪贴板", {
"delay" : 2000,
"position" : "bottom"
});
});
clipboard.on('error', function(e) {
justep.Util.hint("浏览器不支持,请手动复制", {
"delay" : 2000,
"position" : "bottom"
});
});
});
}
就可以了
|
|