我正在尝试在javascript中执行this但更优化并使用切换功能正常工作!
我的js代码:
$(document).ready(function() {
$('a.details').click(function(e){
var id= '';
$('a.details').each(function() {
id = $(this).attr('href');
$('#'+id).hide();
});
$(this).addClass('active');
id = $(this).attr('href');
$('#'+id).toggle();
e.preventDefault();
});
});
答案 0 :(得分:1)
答案 1 :(得分:1)
这是我对此的看法,除非在行的ID中添加t,否则不更改html
http://jsfiddle.net/mplungjan/Rfn8z/
欢迎评论(特别是,如果投票失败)
$(document).ready(function() {
$('a.details').each(function() {
var tr = $("#t"+parseInt($(this).html()));
var link = this;
$(this).toggle(
function(e){tr.show(); $(this).addClass('active'); e.preventDefault();},
function(e){tr.hide(); $(this).removeClass('active');e.preventDefault();}
);
});
});