-2

ページに JavaScript を追加できる Web フレームワークを使用していますが、head タグにコンテンツを追加する機能がありません。新しい JavaScript インクルード ファイルを動的にインクルードすることはできますか? どの JavaScript コードを使用すればよいですか? また、jquery を持っておらず、Internet Explorer 8 のみを使用したいと考えています。

4

2 に答える 2

0

Look at this link: http://javascript.about.com/library/bladdjs.htm

It is possible to add a script-tag to the head without using jQuery:

var th = document.getElementsByTagName('script')[0];
var s = document.createElement('script');
s.setAttribute('type','text/javascript');
s.setAttribute('src','PATH/TO/SCRIPT.js');
th.appendChild(s);
于 2013-10-16T06:25:08.790 に答える