📜  如何制作一个 html css js 编辑器 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:30.889000             🧑  作者: Mango

代码示例3
function compile() {
  var html = document.getElementById("html");
  var css = document.getElementById("css");
  var js = document.getElementById("js");
  var code = document.getElementById("code").contentWindow.document;

  document.body.onkeyup = function() {
    code.open();
    code.writeln(
      html.value +
        "" +
        ""
    );
    code.close();
  };
}

compile();