再次求助于一些让我发疯的 Jquery 东西!我真的希望有人可以帮助解决这个问题。
随之而来的问题
我有 1 个在 document.ready 上运行的 jquery 函数,它通过 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({
});
}