尝试创建一个显示在链接下方的div,该链接会滑动以显示点击墨迹的时间。
我似乎无法让它发挥作用。
我还需要找到一种方法,在div打开时将►更改为▼,尽管这可能需要使用不是ascii字符的图像来完成?
答案 0 :(得分:3)
演示: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);
});