两个ID的一个功能

时间:2013-07-15 05:06:00

标签: jquery joomla scroll

我有一个带滚动功能的按钮,我想添加另一个具有相同功能的按钮。我可以这样做吗? 这是php

<?php if($this->API->modules('cart')) : ?>
            <div id="btnCart" data-url="index.php?lang=<?php echo $lang; ?>&amp;tmpl=cart"><strong>Cart</strong></div>
            <?php endif; ?>

这是jquery

// cart button
    if(document.id('gkPopupCart')) {
        var btn = document.id('btnCart');

        window.addEvent('scroll', function(e) {
            var scroll = window.getScroll().y;
            var max = document.id('gkMainWrap').getSize().y;
            var final = 0;
            if(scroll > 70) {
                if(scroll < max - 122) {
                    final = scroll - 50;
                } else {
                    final = max - 172;
                }
            } else {
                final = 20;
            }
            btn.setStyle('top', final + "px");
        });

1 个答案:

答案 0 :(得分:0)

 <? if($this->API->modules('cart')) {
 echo "<div id='btnCart' data-url='index.php?lang=$lang&amp;tmpl=cart'> 
       <strong>Cart</strong></div>";} ?>

我不明白为什么不呢?你试过吗?