我正在一个网站上,我们从XML文件中获取信息。效果很好,但是现在我需要对内容进行滑动。为此,我将使用jCarousel声明它们可以通过调用回调函数来处理动态加载的内容。
但是,当我成功调用函数时,无法进行初始的ajax加载。我究竟做错了什么?
$(document).ready(function() { $.ajax({ type: "GET", //Url to the XML-file url: "data_flash_0303.xml", dataType: "xml", success: hulabula() }); function hulabula(xml) { $(xml).find('top').each(function() { var headline = $(this).find('headline1').text(); var headlineTag = $(this).find('headline2').text(); $(".wunMobile h2 strong").text(headline + " "); $(".wunMobile h2 span").text(headlineTag); }); ..............
我做错什么了吗?还是我必须去一个完全不同的地方?:-)
使用hulabula代替hulabula()或将函数直接传递给ajax选项:
1。
$.ajax({ type: "GET", //Url to the XML-file url: "data_flash_0303.xml", dataType: "xml", success: hulabula });
2。
$.ajax({ type: "GET", //Url to the XML-file url: "data_flash_0303.xml", dataType: "xml", success: function(xml) { /* ... */ } });