aria-hidden="true">
阅读全文
if ("0" == 1) {
document.addEventListener("keydown",function(e){
if ((e.metaKey || e.ctrlKey) && (e.key === 'c' || e.key === 'C' || e.key === 'x' || e.key === 'X' || e.key === 'a' || e.key === 'A')) {
if (e.target.tagName === 'INPUT' || e.target.tagName === 'TEXTAREA') { return; }
e.preventDefault();
}
});
document.addEventListener("copy",function(e){
var sel = window.getSelection();
var content = document.getElementById('js_content');
if (sel && sel.rangeCount > 0 && content && content.contains(sel.getRangeAt(0).commonAncestorContainer)) {
e.preventDefault();
}
});
}