Sha256: b2367607f6f21bd344d43862b5cbee2743d9034a08fe5582f6501a55f083258a
Contents?: true
Size: 982 Bytes
Versions: 4
Compression:
Stored size: 982 Bytes
Contents
<div style="padding: 15px;" id="day_content"> <h2>今日跟进动态</h2> <hr> <div style="height: 480px;overflow: auto;"> <% text = "\n" %> <% @followups.each_with_index do |d, i| %> <% text += "#{i+1}、**学校--**商机:#{d .description}\n" %> <p style="margin-bottom: 10px;"><%= i+1 %>、**学校--**商机:<%= d .description%></p> <% end %> </div> <div id="content" style="display: none;" data-content="今日跟进动态<%=text %>"></div> <button type="button" onclick="copy()" style=" margin-right: 20px; float: right;" class="layui-btn layui-btn-primary">复制</button> </div> <script> function copy() { var copyText = document.getElementById("content").dataset.content; var textArea = document.createElement("textarea"); textArea.value = copyText; document.body.appendChild(textArea); textArea.select(); if (document.execCommand("Copy")) { layer.msg('已复制到剪贴板'); textArea.remove(); } } </script>
Version data entries
4 entries across 4 versions & 1 rubygems