尝试创建一个显示在链接下方的 div,该链接会在单击墨迹时滑动显示。
我似乎无法让它工作。
我还需要想办法在 div 为“打开”时将 ► 更改为 ▼,尽管这可能需要使用图像而不是 ascii 字符来完成?
演示:http: //jsfiddle.net/DAjEK/4/
这是一种完全不同的方法......更简洁。
$("#colourList a").click(function(e){
e.preventDefault();
$(this).html($(this).is(':contains(▼)') ? 'See the colours ►' : 'Hide the colours ▼');
$("#colours").slideToggle(500);
});