If you go to this page, you can search for artists to subscribe to, then subscribe to an artist in the search results by clicking subscribe .
如果您是艺术家,然后试图不收钱,艺术家就不会从名单上删除,但你第二次点击了未提交书的纽特。
注册艺术家名单储存在全球变量
An artist is added to the container when a user subscribes by calling
SF.subscribe = function(artistSelector, newArtist) {
var subscribedArtist = $(newArtist);
SF.container.append( subscribedArtist ).isotope( appended , subscribedArtist );
}
An artist is removed from the container by calling
SF.unsubscribe = function(selector) {
SF.container.isotope( remove , $(selector));
};
每次被点击时,同一参数值就被推入这一功能,因此我不知道为何第二次工作,而不是第一次。
只有当你订阅艺术家时,才试图在不复读一页的情况下,即,在首批装货时,没有出现与艺术家无关的问题。 上述职能载于global.js
。