本文介绍了MooTools中的.getScript()等效项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否有一个与jQuery .getScript()
等效的MooTools?我可以肯定的是,它存在于MooTools中的某个地方,但是我还没有找到它.
I was wondering if there is a MooTools equivalent to jQuery's .getScript()
? I'm pretty certain that this exists somewhere in MooTools but I haven't been able to find it yet.
推荐答案
我对MooTools不太熟悉,但是看起来您可以使用 Asset.javascript
.
I'm not that familiar with MooTools, but it looks like you can use Asset.javascript
.
var myScript = Asset.javascript('/scripts/myScript.js', {
id: 'myScript',
onLoad: function(){
alert('myScript.js is loaded!');
}
});
这篇关于MooTools中的.getScript()等效项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!