とりあえず、「<p>test</p>」を表示してみるときはこんな感じで。
★test.js
var test = document.createElement("p");
test.textContent = "test";
document.body.insertBefore(test, document.body.firstChild);
test.textContent = "test";
document.body.insertBefore(test, document.body.firstChild);
あとはこれに css で position: absolute; などで整形していけば、既存のページの見た目を害せずに表示することができる。
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.