我确实在努力解决一个问题,我希望这里的某个人需要一些时间帮助我。 I m试图在使用j Query 1.6.2和JQM 1.0rc3的xml文件中找到一个名为“Emotion”的儿童的最后文本选择。 XML文件Im有以下结构。
<StatusModel>
<Uid>5e4dc88f-f703-4e34-92f6-609216de6c6f</Uid>
<Created>Wednesday, November 02, 2011 2:20 PM</Created>
<User>larry_irons</User>
<Level>2</Level>
<Doing>typing</Doing>
<Thinking>the pain in my neck</Thinking>
<Emotion>Pain</Emotion>
</StatusModel>
The following ajax Coderecoverys the full xml document and I see the succesful in Getbug s console. 然而,我还收到“机器人不是未界定的”错误信息,而这一功能未能检索作为“跟踪”声明试图做到的改动案文。 The ajax is as follows:
$( #feeling ).live( pageinit , function (event) {
$.ajax({
type: "Get",
url: "/api/list",
cache: false,
dataType: xml ,
success: function (xml) {
manipulateType(xml);
}
});
function manipulateType(xml) {
//empty the emotion_type div
$("#emotion_type").html("");
//retrieve current emotion to track and append to div emotion_type
$(xml).find( StatusModel ).each(function () {
var tracking = $(this).find("Emotion").text();
//append content and tracking variable to div emotion_type
$( #emotion_type ).append("On a scale of 1 (low) to 10 (high) I m feeling this much " + tracking + : );
//refresh the review data div #summarylist
$( #emotion_type ).live("refresh");
});
}
});
我假定错误信息是“跟踪”声明的结果。 然而,我申请的另一页几乎是相同的法典,没有错误的信息。 如果有人愿意与我接触,我需要两点意见。
Can you see any obvious problem with how I m declaring the selector?
您能否对我如何修改《公约》发表一些看法,以便把最后一位儿童节点的“教育”文本列入xml文件?
<>Update: 我改为“jquery.mobile-1.0.js和jquery-1.6.4.js”,错误仍然存在。