1

我正在尝试从链接的标题 attr 启动颜色框。

我已经设法使用以下方法为 imgs 启动 colorbox:

$("a[rel*=lightbox]").colorbox({width:"700",height:"500",innerWidth:"700",innerHeight:"500",opacity:0.8,slideshow:true,slideshowSpeed:2500,slideshowStart:"start",slideshowStop:"stop"});

但是,我需要使用此链接的标题。有人有什么想法吗?

<a title="booknow" href="link">Book Now</a>

$("a[title=booknow]").colorbox({iframe:true, innerWidth:100%, innerHeight:100%});

任何帮助/指导将不胜感激。

编辑:我也在使用其他插件

<script type="text/javascript">
jQuery(document).ready(function() {
    jQuery('.carousel').jcarousel();
});

        $(window).scroll(function(){
            if ($(this).scrollTop() > 100) {
                $('.scrollup').fadeIn();
            } else {
                $('.scrollup').fadeOut();
            }
        });

        $('.scrollup').click(function(){
            $("html, body").animate({ scrollTop: 0 }, 600);
            return false;
        });

    $(window).load(function() { 
        $('.defaultP input').ezMark();
        $('.customP input[type="checkbox"]').ezMark({checkboxCls: 'ez-checkbox-red', checkedCls: 'ez-checked-red'})
        $('#slider').nivoSlider();
        $("#example-one").organicTabs();
        $("#example-two").organicTabs();
    });
</script>**
4

2 回答 2

0

它应该适用于您正在使用的东西

$("a[title=booknow]").colorbox({
                   iframe:true,
                   innerWidth:"100%", 
                   innerHeight:"100%"
                  });​

所以问题可能出在其他地方。

工作小提琴

于 2012-06-12T11:54:34.957 回答
0

你可以这样做

$("a[title=booknow]").click(function(){
     $.colorbox({
               iframe:true,
               innerWidth:"100%", 
               innerHeight:"100%"
              });
 });​
于 2012-07-31T11:27:36.230 回答