Javascript не работает в статье Joomla
Я пытаюсь внедрить этот сценарий панорамирования изображения (dannyvankooten dot com/jquery-plugins/mapz/) в статью Joomla. Я протестировал его вне Joomla ( http://tylypahka.tk/karttatesting/), и он работает отлично. Однако, когда я попробовал это в статье Joomla, панорамирование не работает ( http://tylypahka.tk/kartta).
Я поместил тот же самый точный код в голову шаблона Joomla, который был у меня в тестовой версии:
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js" type="text/javascript"></script>
<script src="https://jquery-ui.googlecode.com/svn-history/r2596/branches/dev/spinner/external/mousewheel/jquery.mousewheel.min.js" type="text/javascript" ></script>
<script src="http://tylypahka.tk/js/jquery.mapz.js" type="text/javascript"></script>
<script type="text/javascript" src="http://tylypahka.tk/js/jquery.maphilight.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#map").mapz({
zoom : true,
createmaps : true,
mousewheel : true
});
});
</script>
<script type="text/javascript">$(function() {
$('.map').maphilight();
$('#squidheadlink').mouseover(function(e) {
$('#squidhead').mouseover();
}).mouseout(function(e) {
$('#squidhead').mouseout();
}).click(function(e) { e.preventDefault(); });
});</script>
<style>
.map-viewport{ position:relative; width:860px; height:883px; overflow:hidden; background-color:black;}
.level{ position:absolute; left:0; top:0; z-index:10;}
.current-level{ z-index:20; }
#map{ width:1297px; height:883px; position:absolute; left:0; top:0; cursor:move;}
</style>
И тот же точный код к статье:
<div class="map-viewport">
<div id="map">
<img src="http://img42.imageshack.us/img42/8954/tylypahkanportit.png" width="1297" height="883" usemap="#html-map" class="current-level level map" />
</div>
<map name="html-map">
<area id="squidhead" shape="rect" coords="311,494,434,634" href="http://www.image-maps.com/" alt="" title=""/>
</map>
</div>
jQuery автоматически загружается на сайт Joomla, поэтому это не должно быть проблемой. Есть идеи, что я здесь делаю не так?
Все предложения и помощь будут высоко оценены!
2 ответа
Вы используете $, который является сокращенным кодом для jQuery, но Joomla также загружает mootools, которому назначен тот же самый селектор: так что просто измените все $() на jquery(), и вы должны заставить его работать. Вам нужно только сделать это на внешнем уровне, а затем передать $ в качестве параметра:
jQuery(function($){
// inside this handler you can use the $ since you passed it as a parameter to the function:
// btw, this is nicer than jQuery(document).ready...
$('#someid').show();
});
Было бы лучше включить код в вашу голову, используя стандарты кодирования Joomla, а также проверить, что он еще не был импортирован, так как это вызовет конфликты.
Итак, во-первых, скачайте Sourcerer, который позволит вам добавлять код в ваши статьи.
Затем добавьте следующее с помощью Sourcerer:
$document = JFactory::getDocument();
if(!JFactory::getApplication()->get('jqueryui')){
JFactory::getApplication()->set('jqueryui',true);
$document->addScript("https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js");
}
$document->addScript("https://jquery-ui.googlecode.com/svn-history/r2596/branches/dev/spinner/external/mousewheel/jquery.mousewheel.min.js");
$document->addScript("http://tylypahka.tk/js/jquery.mapz.js");
$document->addScript("http://tylypahka.tk/js/jquery.maphilight.js");
$document->addScriptDeclaration('
$(document).ready(function() {
$("#map").mapz({
zoom : true,
createmaps : true,
mousewheel : true
});
});
');
$document->addScriptDeclaration('
$(function() {
$('.map').maphilight();
$('#squidheadlink').mouseover(function(e) {
$('#squidhead').mouseover();
}).mouseout(function(e) {
$('#squidhead').mouseout();
}).click(function(e) { e.preventDefault(); });
});
');
$document->addStyleDeclaration(.map-viewport { position:relative; width:860px; height:883px; overflow:hidden; background-color:black;}
.level{ position:absolute; left:0; top:0; z-index:10;}
.current-level{ z-index:20; }
#map{ width:1297px; height:883px; position:absolute; left:0; top:0; cursor:move;});
Надеюсь, что это работает и помогает