JavaScript / jQuery新手。我知道HTML OK和CSS OK。无法让我的按钮在jQuery中工作。研究2晚,现在寻求帮助:( thnx
//jQuery time
$(document).ready(function () { });
var current_fs, next_fs, previous_fs; //fieldsets
$(".next").click(function () {
current_fs = $(this).parent();
next_fs = $(this).parent().next();
});
$(".previous").click(function () {
current_fs = $(this).parent();
previous_fs = $(this).parent().prev();
});
$(".submit").click(function () {
})
答案 0 :(得分:0)
您的所有jQuery代码都应该在$(document).ready(function () { });
所以你必须做这样的事情
var current_fs, next_fs, previous_fs; //fieldsets
$(document).ready(function () {
$(".next").click(function () {
current_fs = $(this).parent();
next_fs = $(this).parent().next();
});
$(".previous").click(function () {
current_fs = $(this).parent();
previous_fs = $(this).parent().prev();
});
$(".submit").click(function () {
});
});