「JavaScript入門」scriptタグを動的にdomに追加するメモ
JSコード:
var script = document.createElement('script’);
script.src = '/test/cft/sample.js’;
document.body.appendChild(script);
Coding Changes the World
JSコード:
var script = document.createElement('script’);
script.src = '/test/cft/sample.js’;
document.body.appendChild(script);