我有一个动态jquery手风琴。我在顶部有两个字段。在两个字段都填写完毕并且用户按下"添加问题按钮"后,会在顶部添加一个带有蓝色标题的新面板。随着我不断添加问题,越来越多的小组已经准备好了,它们的标题也是蓝色的。我已经在我添加面板的jquery部分添加了蓝色标题的代码。
我还有一个提交按钮,它刷新页面并将页面返回到默认值(因此之前的所有面板都会丢失)。
以下是输出:https://jsfiddle.net/5gLb0cqx/
我的问题是:我正在努力使只有新添加的面板具有蓝色标题。
我的代码如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Accordion - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
var counter = 2;
$(function() {
$("#accordion").accordion({
collapsible: true,
active: false,
});
function edit(){
var text = $(this).siblings("input[type=text]").val();
var sql = $(this).siblings('textarea').val();
$("#input").val(text);
$("#sql_code").val(sql);
}
$(":button").click(edit);
$("#addAccordion").click( function() {
var inputVal = $("#input").val();
var sqlVal = $("textarea#sql_code").val();
if (!sqlVal || !inputVal){
return;
}
var newDiv = '<div><h3 style = "background:lightblue;">Question '+ counter +'</h3></div>';
var content = '<div class = "new_panel"><label>'+inputVal+'</label><br><br><label for="in" name="question">Edit Question:</label> <input type="text" name = "question" value ="'+inputVal+'" /><br><br>'
+ ' <label name="SQL">Edit SQL code here:</label><textarea name = "code">'+sqlVal+'</textarea>' +
'<br><br> <input type = "button" value = "Edit" ></input></div>';
$("#accordion").prepend(newDiv +content) ;
$("#accordion").accordion("refresh");
counter++;
$(":button").click(edit);
});
});
</script>
</head>
<body>
<center>
<form id="myform">
<label>Enter Question:</label>
<input id="input" type="text" name = "questions"/>
<br><br>
<label>Enter SQL code here:</label>
<textarea id="sql_code" name = "SQL_code"></textarea>
<br><br>
<input id = "submitbutton" type="submit" value="Submit"/>
<input type = "button" id ="addAccordion" value = "Add Question" ></input>
</form>
</center>
<div id = "accordion">
<h3> Question 1 </h3>
<div>
<form>
Have you ever been tested for an STI?
<br><br>
<label for="in" name="question1">Edit Question:</label>
<input type="text"/>
<br><br>
<label for="sql" name="SQL">Edit SQL code here:</label>
<textarea></textarea>
<br><br>
<input type = "button" value = "Edit" ></input>
</form>
</div>
</div>
</body>
</html>
我不知道如何使用我当前的代码来实现这一点。
我想以某种方式在手风琴面板上循环,找到添加的最新面板,尽管我不知道如何做到这一点。
有人能为我指明正确的方向吗?或者对如何解决这个问题有任何建议吗?
演示
如果每个面板的标题中只有h3,只需在jQuery 中添加一行即可
$("#accordion").find("h3").not(":first").css({"background":"none"})
在准备新面板后,OR
$("#accordion").find("h3").css({"background":"none"})
在准备之前。
更改一些jquery
var newDiv = '<div style="background:lightblue;"><h3 style="margin:2px 0 0;">Question '+ counter +'</h3></div>';
https://jsfiddle.net/5gLb0cqx/2/