// head 情報を所得
var head = document.getElementsByTagName("head")[0];
// script の要素を作成し、head 要素に突っ込む
var s = document.createElement("script");
s.type = "text/javascript";
s.src = "js/index.js";
s.charset = "utf-8";
head.appendChild(s);
var head = document.getElementsByTagName("head")[0];
// script の要素を作成し、head 要素に突っ込む
var s = document.createElement("script");
s.type = "text/javascript";
s.src = "js/index.js";
s.charset = "utf-8";
head.appendChild(s);
document.body はあるけど、document.head ってないから、代わりに getElementsByTagName で取得すればできるね。
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.