将内联更改为unmptriveive jquery

时间:2010-04-20 15:56:22

标签: jquery onclick

我需要使用一类hslide定位所有链接并将其附加到它们。任何jquery guru都知道如何做到这一点?

onclick="return hs.expand(this, { slideshowGroup: 'groupC0',  wrapperClassName: 'rounded-white', outlineType : 'rounded-white', dimmingOpacity: 0.8,  align : 'center',  transitions : ['expand', 'crossfade'], fadeInOut: true });"

谢谢, ç

2 个答案:

答案 0 :(得分:5)

$(document).ready(function() {
    $('a.hslide').click(function() {
        return hs.expand(this, {
            slideshowGroup: 'groupC0',
            wrapperClassName: 'rounded-white',
            outlineType : 'rounded-white',
            dimmingOpacity: 0.8,
            align : 'center',
            transitions : ['expand', 'crossfade'],
            fadeInOut: true
        });
    });
});

答案 1 :(得分:1)

在该对象上设置一个类,然后使用jQuery选择它,然后将onclick事件添加到匿名函数。

$(document).ready(function() {
   $(INSERT CLASS HERE).click(function() {
       return hs.expand(this, {
           slideshowGroup: 'groupC0',
           wrapperClassName: 'rounded-white',
           outlineType : 'rounded-white',
           dimmingOpacity: 0.8,
           align : 'center',
           transitions : ['expand', 'crossfade'],
           fadeInOut: true
       });
   });
});