📌  相关文章
📜  如何将 js 对象保存到剪贴板 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:20.139000             🧑  作者: Mango

代码示例1
1. Right-click an object in Chrome's console and select Store as Global Variable from the context menu. It will return something like temp1 as the variable name.
2. Chrome also has a copy() method, so copy(temp1) in the console should copy that object to your clipboard.