我想在完成contenteditable
之后自动保存HTML文件。如何实现呢?我的HTML文件是:
<!DOCTYPE html>
<html>
<head>
<title>Sample File editor</title>
<meta charset="utf-8" />
</head>
<body contenteditable="true">
<div>Press keys here..<br/>
<i>Sample Italic Text</i> and <b>Sample Bold Text</b> and so on...<br/>
</div>
</body>
</html>
我希望使用纯javascript
。