这是一个<div>用作markdown 到 html 转换器的函数,其内部html是可变的:
<div id="markdown" class="classname">
</div>
我想制作一个 javascript 函数,它复制(到剪贴板)内部html的<div>,以及div: 的样式表(注意:样式表不是可变的)
<style>
html {
font-size: 13px;
line-height: 1.5;
padding:60px;
}
<!-- and many more... -->
</style>
预期的复制结果如下;
<style>
html {
font-size: 13px;
line-height: 1.5;
padding:60px;
}
<!-- and many more... -->
</style>
<!-- below are sample contents from the <div> -->
<h1>markdown test</h1>
<p>hello</p>
需要什么脚本来实现这个?通过窗口警报复制结果prompt也可以。
慕的地8271018
杨__羊羊
相关分类