好吧,所以我一直在修改我的网站,以允许每个“事件”达到更多的数据记录。在我决定将二级记录添加到数据库之前,一切都很顺利。现在,当我打开我的内容框并单击“事件”时,我只能选择其中的一个项目。
$(document).ready(function() {
$('#body').load('body.php', function(){
$('.stars, .ship').click(function(){
var name = $(this).attr('name');
var type = $(this).attr('type');
var linkvar = 'content.php?eid=';
var link_full = linkvar + name;
$('#box').show('slow');
$('#box_content').addClass(type);
$('#box_content').load(link_full,
function()
{
$(function(){ $('#close_this_box').click(
function(){
$('#box').hide('slow');
})
});
$('.event').click(function()
{
var name = $(this).attr('name');
var linkvar = 'content.php?cid=';
var link_full = linkvar + name;
$('#loading').show();
$('#box_content').load(link_full,
function()
{
});
});
});
});});
(http://gmz1023.com/index.php用于实时视图;该网站过于动态,无法实际添加jsfiddle,我为此适用。)
答案 0 :(得分:2)
这是一个CSS问题。 你的“box_footer”与你的桌子重叠。
提示:重新考虑您的javascript结构,以使用jQuery.on方法向元素添加事件。