Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="editor" contenteditable style="width: 100%; height: 200px; border: 1px solid #ccc"></div>
  <p id="textinputcount">还可以输入1000字</p>
</body>
</html>
 
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
var editor = document.querySelector('#editor');
var textinputcount = document.querySelector('#textinputcount');
var observer = new  MutationObserver(function(mutations){ mutations.forEach(function(mutation){
    if(mutation.type == "characterData") {
    var newValue = mutation.target.textContent;
      textinputcount.innerHTML = "还可以输入"+(1000 - newValue.length+"字");
    }
  });
});
observer.observe(editor, {
  childList: true,
  attributes: true,
  characterData: true,
  characterDataOldValue: true,
  subtree: true
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
andypinetpro
0viewers