📅  最后修改于: 2022-03-11 14:53:30.889000             🧑  作者: Mango
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();