我需要在加载应用程序时触发单击“主页”按钮。主页应该变成红色,并且应该在矩形中显示相应的段落。
$(document).ready(function(){
$('.showSingle').click(function () {
$('.targetPara').hide();
$('#p' + $(this).attr('target')).show();
$('.showSingle').removeClass('selected')
$(this).addClass('selected');
});
});
var active_link = 1; // Change this value to set the active link
$('td[target='+active_link+']').trigger('click');
我使用 abobe jquery 代码。请帮我弄清楚问题是什么