[更新] 它仅适用于 Firefox,不适用于 Chrome 或 Safari。我正在关注一个jQuery 教程 (AHAH),但是当我点击花朵时,描述并没有出现在“显示更多”部分。
var $flowers = $('#flower-items');
$('#flower-items').find('a').on('click', function(e){
e.preventDefault();
var $desc = $('#flower-description');
switch($(this).attr('href')) {
case 'calla.html' :
$desc.load('fragments/lilies.html');
break;
case 'sunflowers.html' :
$desc.load('fragments/sunflower.html');
break;
case 'iris.html' :
$desc.load('fragments/irises.html');
break;
case 'alstromeria.html' :
$desc.load('fragments/peruvian.html');
break;
}