环顾四周,这个问题相当普遍,但我找不到能解决问题的地方。我正在使用jQuery特别是它的手风琴功能,无法让它与IE8一起使用
使用以下
<link href="incl/client/css/hot-sneaks/jquery-ui-1.10.4.custom.css" rel="stylesheet">
<script src="incl/client/js/jquery-1.10.2.js"></script>
<script src="incl/client/js/jquery-ui-1.10.4.custom.js"></script>
像这样打电话
<script>
$(function() {
$( "#accordion" )
.accordion({
header: "> div > h3",
collapsible : true,
heightStyle: "content",
active : 'none'
})
.sortable({
axis: "y",
handle: "h3",
update: function(event, ui){
var Order = $("#accordion").sortable('toArray').toString();
$('#order').val(Order);
}
});
});
</script>
这里有HTML
<div id="accordion">
<div class="group" id="40">
<h3>Formatting: [Heading]</h3>
<div>
Stuff
</div>
</div>
<div class="group" id="39">
<h3>Formatting: [Divider]</h3>
<div>
Stuff
</div>
</div>
<div class="group" id="42">
<h3>Field: Parent Application</h3>
<div>
Stuff
</div>
</div>
<div class="group" id="41">
<h3>Field: Child Application</h3>
<div>
Stuff
</div>
</div>
<div class="group" id="38">
<h3>Formatting: [Divider]</h3>
<div>
Stuff
</div>
</div>
</div>
在以后的版本Chrome和Firefox中效果很好。