mootools按文档ID

时间:2016-02-20 07:06:20

标签: javascript html css mootools

我只是尝试使用moo-tools将一些html内容加载到基于点击事件的id中,但我似乎无法找到我的错误。 alert('clicked')有效,所以我知道点击事件正在触发。

window.addEvent('load', function(){
    $('deviceInfo').addEvent('click', function(){
        document.id('commands').load('deviceInfo.html');
        //alert('clicked');
    });
});

点击id

<a href="#" id="deviceInfo">Information</a>

目标id

<div id="commands">
    <p>something</p>
</div>

deviceInfo.html仅包含:

<p>info</p>

1 个答案:

答案 0 :(得分:0)

我剥离了所有内容并仅使用mootools核心库运行该功能,并且它工作正常。所以这是js库之间的某种冲突。所以,神秘解决了。