js 웹 페이지_javascript 기술에서 (실행 코드) 기능을 구현하기 위한 아이디어
달리다
코드 복사 코드는 다음과 같습니다.
;
function runCode(oCode) {
var win = window.open('', "_blank", '');
win.document.open('text/html', 'replace ' );
win.opener = null
win.document.write(oCode.value)
win.document.close()
>