Jquery和Ajax数据?

时间:2010-01-19 12:17:06

标签: jquery jcarousel

倪再次帮助了一些让我疯狂的Jquery东西!我真的希望有人可以帮忙解决这个问题。

此问题

我有一个jquery函数,它在document.ready上运行,它通过Ajax方法获取数据。然后,我想使用jcarousel在页面上显示图像。到目前为止我的脚本。我哪里错了?

<script type="text/javascript">
$(document).ready(function() {
    var soapEnv =
        "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> \
            <soapenv:Body> \
                 <GetListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'> \
                    <listName>Awards</listName> \
                    <viewFields> \
                        <ViewFields> \
                           <FieldRef Name='ImgURL'/> \
                         </ViewFields> \
                    </viewFields> \
                </GetListItems> \
            </soapenv:Body> \
        </soapenv:Envelope>";
    $.ajax({
        url: "_vti_bin/lists.asmx",
        type: "POST",
        dataType: "xml",
        data: soapEnv,
        complete: processResult,
        contentType: "text/xml; charset=\"utf-8\""
    });
});

function processResult(xData, status) {
    $(xData.responseXML).find("z\\:row").each(function() {
        var ImgSrc = $(this).attr("ows_ImgURL");
        return;
    });       
}    
function StartCarousel() {
    jQuery('#mycarousel').jcarousel({          
    });
}

   

1 个答案:

答案 0 :(得分:1)

修复了服务器端代码的问题。