(function(){
var iframe = document.createElement('iframe');
iframe.style.display = 'none';
document.body.appendChild(iframe);
console = iframe.contentWindow.console;
window.console = console;
console.clear()
const options = Array.from(document.querySelectorAll('.question-option label.el-radio .el-radio__label .option')).map(ele=>ele.innerText.replace("\n",""))
const title = document.querySelector('.question-stem').innerText
const text = [title,...options].join("\n")
function copyToClipboard(text) {
// 创建一个文本区域元素
var textArea = document.createElement("textarea");
// 设置文本区域的值
textArea.value = text;
// 将文本区域添加到文档中
document.body.appendChild(textArea);
// 创建一个范围对象并选择文本
var range = document.createRange();
range.selectNode(textArea);
window.getSelection().addRange(range);
try {
// 尝试执行复制命令
var successful = document.execCommand('copy');
var msg = successful ? '已复制到粘贴板' : '复制失败';
console.log(msg);
} catch (err) {
console.error('无法执行复制命令:', err);
}
// 移除文本区域元素和选择的文本范围
document.body.removeChild(textArea);
window.getSelection().removeAllRanges();
}
copyToClipboard(text)
console.log(text)
})()
console