文章目录
js复制弹窗美化现在很多网站都会带这个功能,Ctrl+C后会有版权提示,你知道怎么实现吗?js和css都挂载在cdn上,有强迫症的可以自行本地化
打开主题目录下的functions.php文件,添加如下代码
/*js 弹窗美好*/
add_filter(‘the_content’, ‘old_content_message’);
function zm_copyright_tips() {
echo ‘<link rel=“stylesheet” type=“text/css” rel=“external nofollow” target=“_blank” rel=“external nofollow” target=“_blank” href=“https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.css” >’;
echo ‘<script src=“https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.js”></script>’;
echo ‘<script>document.body.oncopy = function() { swal(“复制成功!”, “转载请务必保留原文链接,申明来源,谢谢合作!!”,“success”);};</script>’;
}
add_action( ‘wp_footer’, ‘zm_copyright_tips’, 100 );
通用教程
// 在网页底部调用下边的两个静态文件
<link rel=“external nofollow” target=“_blank” href=“https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.css” rel=“stylesheet”>
<script type=’text/javascript’ src=“https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.js”></script>
//然后添加如下代码
<script>document.body.oncopy = function() {swal(“复制成功!”, “草根吧VPS:若要转载请务必保留原文链接,申明来源,谢谢合作!”,“success”);};</script>