我正在更改手风琴结构()并根据使用AJAX的选择更改它。
问题是,基于手风琴文档,我希望它像
一样工作<h3>header</h3>
<div><anything></anything></div>
使h3填充标题和div填充正文,但是当我使用ajax动态创建它时,它会搞砸。这段代码专门为第一个手风琴盒使用了正确的标题,但是正文是空的,下一个标题变为“没有打开的会话窗口......”这显然不是我想要的。获得的JSON位于:http://benbuzbee.com/trs/json.php?show=sessions&courseid=5
$(function() {
$("#courseselect").change(function () {
$("#testselect").accordion("destroy").html(""); // Empty any previous data
$("#testselect").css("display", "block"); // Display it if it was hidden
$.getJSON('json.php?show=sessions&courseid=' + $(this).val(), function(data) {
for (x in data)
{
$("#testselect").append("<h3><a href=\"#\">" + data[x].name + "</a></h3>");
$("#testselect").append("<div>");
if (!data[x].sessions)
$("#testselect").append("<p>There are no open session windows for this test.</p>");
for (si in data[x].sessions)
{
$("#testselect").append("<a href=registerconfirm.php?sessionid=\""+data[x].sessions[si].uno+"\">"+data[x].sessions[si].location+"</a>");
}
$("#testselect").append("</div>");
}
$("#testselect").accordion();
//$("#testselect").accordion({ change:function(event, ui) { courseid = ui.newHeader.attr("value"); }
}); // End getJSON
}); // end .change
}); // end $()
答案 0 :(得分:3)
我想我看到了一些问题。
您的陈述
$("#testselect").append("<div>")
将向#testSelect添加一个开始和结束标记,如下所示:
<div id='testselect'><h3><a> </a> </h3><div></div> </div>
任何进一步附加到#testselect的行都会在div标签之后附加元素。
你的下一个声明,
$("#testselect").append("<p>There are no open session windows for this test.</p>");
会这样做
<div id='testselect'><h3><a></a></h3><div></div><p> There are no open session windows for this test. </p> </div>
您的陈述
$("#select.").append("</div>")
不会像你似乎想要的那样将一个结束div标签附加到#testselect。相反,它什么都不做。
您应该将for循环更改为以下内容:
for (x in data)
{
var $header = $("<h3>").appendTo("#testSelect");
$header.append("<a href=\"#\">" + data[x].name + "</a>")
var messageContainer = $("<div>").appendTo($header);
if (!data[x].sessions)
messageContainer.append("<p> There are no open session windows for this test </p>");
for (si in data[x].sessions)
{
messageContainer.append("<a href=registerconfirm.php?sessionid=\""+data[x].sessions[si].uno+"\">"+data[x].sessions[si].location+"</a>");
}
$("#testselect").accordion();
}