我正在使用这个 Fiddle http://jsfiddle.net/wNDaG/中的代码,它动态生成一些按钮。但是,我想做的是让每个按钮也执行通过 ajax 加载一些内容(将其附加到 div)的功能。
这是小提琴的代码:
$('#tabs div').first().attr('class', 'current');
$('#tabs div').each(function(i) {
i = i + 1;
$(this).attr('id', 'tab-' + i);
if(i !== $('#tabs div').size()) {
$(this).append('<button class="tabPagination" rel="tab-' + (i + 1) + '">Next</button>');
}
if(i !== 1) {
$(this).append('<button class="tabPagination" rel="tab-' + (i - 1) + '">Previous</button>');
}
});
$('#tabs div[class!="current"]').hide();
$('.tabPagination').live('click', function() {
$('.current').removeAttr('class');
$('#tabs div[class!="current"]').hide();
$('#' + $(this).attr('rel')).show();
});
首先,我要做的第一件事是在附加按钮中添加类似这样的内容:
href="some-content/next-pagenum_' + (i + 1) + '"
在那之后,我需要帮助来组合如下函数,该函数将通过 ajax 附加内容:
$('.tabPagination').live('click', function(event) {
var url = $(this).attr('href');
$('#content-target-div').load(url); // load the html into your chosen DOM element
event.preventDefault(); // prevent the browser from navigating to this page
return false;
});
在这里的任何帮助将不胜感激。提前致谢!