Skip to content

Instantly share code, notes, and snippets.

@outiy5
Last active May 3, 2020 16:05
Show Gist options
  • Save outiy5/b25d5be797f670b10151f179d2ed261d to your computer and use it in GitHub Desktop.
Save outiy5/b25d5be797f670b10151f179d2ed261d to your computer and use it in GitHub Desktop.
[js create element] #html #javascript
var childNode = document.createElement('p');
childNode.innerHTML = '这里是提示信息〜〜';
//childNode.setAttribute('class', 'alerts');
//childNode.setAttribute('onclick', 'this.style.display = "none"');
childNode.className = 'alerts';
childNode.onclick = function () {
this.style.display = 'none';
}
document.getElementsByTagName('body')[0].appendChild(childNode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment