我有一個需要使用mootools日曆的應用程序,但是,我爲我的主應用程序結構使用了jquery。Jquery和Mootools,.noConflict失敗
只要我有jQuery的mootools,既不工作,當我只有一個,他們工作正常。我做了一些研究,說我可以使用一種名爲.noconflict的方法,雖然我已經嘗試過,但還沒有得到它來解決我的問題。也許有人可以更好地向我解釋在哪裏做實際的.noconflict電話,也許幫助我得到這個工作。
謝謝!
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
var fixHeight = function() {
var gutter = 50;
var newHeight = $(window).height() - (gutter*2);
$('#container').height(newHeight);
}
$(function(){
fixHeight();
$('ul#nav li.item').each(function(index) {
if ($(this).attr("name") == "media") {
$(this).attr("id","active");
}
});
$('input').focus(function() {
$(this).attr("value","");
}).blur(function() {
$(this).attr("value",$(this).attr("original-value"));
});
$(window).resize(function() {
fixHeight();
}).load(function() {
fixHeight();
});
});
</script>
<script type="text/javascript" src="http://taptouchclick.com/js/mootools-1.2.4-core-yc.js"></script>
<script type="text/javascript">
window.addEvent('domready', function(){
var smoothCalendar = new SmoothCalendar("calendar");
});
</script>
感謝,偉大的工作:d – willium 2011-05-21 07:11:37