JQuery中的getScript等效于Prototype

时间:2010-05-05 11:24:03

标签: jquery prototypejs

在Prototype中是否有一些等同于jQuery的getScript?

1 个答案:

答案 0 :(得分:5)

var head;

var script;

head = $$('head')[0];
if (head)
{
    script = new Element('script', { type: 'text/javascript', src: 'dynamic.js' });
    head.appendChild(script);
}