选择(selected.jquery.js)在表单内部无效。如果该代码在用于jquery-steps的表单之外运行,则它可以正常工作。我在jquery-steps中也遇到public static int sizeAboveDepth(Node t, int depth, static int k) {
// TODO: Complete this method.
if (t == null) {
return 0;
}
if (depth < k)
return (sizeAboveDepth(t.left,depth+1, k ) + sizeAboveDepth(t.right, depth+1, k) + 1);
else {
return 0
}
}
public static int sizeBelowDepth(Node t, int depth,static int k) {
// TODO: Complete this method.
if (t == null) {
return 0;
}
if (depth > k)
return (sizeBelowDepth(t.left, depth+1, k) + sizeBelowDepth(t.right, depth+1, k) + 1);
else {
return sizeBelowDepth(t.left,depth++, k) + sizeBelowDepth(t.right,depth++, k);
} }
同样的问题。我该如何解决这个问题?
答案 0 :(得分:12)
您需要先初始化jquery步骤,然后再初始化其他插件 http://jsfiddle.net/6YkZV/50/
$(function () {
//step1
$("#wizard").steps({
bodyTag: "fieldset",
headerTag: "h4"
});
//step2
$(".datepicker").datepicker();
});