联系官方销售客服
1835022288
028-61286886
这个一个其他CMS模板中微信弹出复制的代码,用在迅睿中提示错误,请问应该怎么修改
<script>
var clipboard = new Clipboard('#btnh');
clipboard.on('success', function(e) {
$(".wechat-ses").fadeIn();
$(".wechat-mask").fadeIn();
});
clipboard.on('error', function(e) {
console.log(e);
});
$(".wx-konw").click(function(){$(".wechat-ses").fadeOut();});
$(".opwx").click(function(){$(".wechat-dialog").fadeIn();$(".wechat-mask").fadeIn();});
$(".wx-close,.wechat-mask").click(function(){$(".wechat-mask").fadeOut();$(".wechat-dialog").fadeOut();$(".wechat-ses").fadeOut();});
</script>