Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 wordpress 网站。我想在列表中的所有帖子中添加复制到剪贴板按钮。在帖子中,复制到剪贴板的内容包含在 ajax 加载的内容中。Zclip 在正常内容中工作正常,而不是在 ajax 内容中。
示例代码
jQuery('.ajax_area').load('ajax_test_file.php', function() { jQuery('a.copy-description').zclip({ path: '<?php bloginfo('template_url'); ?>/js/ZeroClipboard.swf', copy: function() { return jQuery(this).find('p.description:first').text(); } }); }