0

zeroclipboard に関するかなりの数の投稿を見てきましたが、残念ながら、私のようなスクリプト初心者にとって、返信は役に立たない (理解できる) ものではありませんでした。たくさんのクーポンが掲載されているページがあります。誰かがクーポンをクリックしたときに、クーポンの CODE をコピーして、クーポンの LINK に移動したいと考えています。アラートでコピーするコードを取得できますが、各クーポンのリンクで指定した URL に移動する方法がわかりません。誰かがこれを行う方法を教えてもらえますか? これが私のコードです...

<section style="position:relative">
<div id="sliders" style="margin:0 auto; width: auto; height:auto;">
    <div class="scrollable" id="scrollable">
        <div id="slider1" class="items">

            <div onclick="window.open('http://url-one.com','_blank');"> <!--THERE ARE SEVERAL OF THESE-->
                html...
                <div id="clip_container1">
                    <p id="coupon1" link="url-one.com" onMouseOver="move_swf(this)">copytext1</p>
                </div>
            </div>

        </div>
    </div>
</div>
</section>

<script>
ZeroClipboard.setMoviePath( '<?= base_url("resource/js/ZeroClipboard.swf");?>' );
var clip = null;
//  function $(id) { return document.getElementById(id); } //not needed?
function init() 
{
    clip = new ZeroClipboard.Client();
    clip.setHandCursor( true );
    clip.addEventListener('complete', function(client, text) {
        alert("Copied Coupon Code to your clipboard:\n" + text);
//          now open "link" in a new window...;   
    });
   }

function move_swf(ee)
{ 
   copything = document.getElementById(ee.id+"").innerHTML;
   clip.setText(copything.substring(23));
      if (clip.div)
     {    
         clip.receiveEvent('mouseout', null);
         clip.reposition(ee.id);
      }
      else{ clip.glue(ee.id);   
      }
      clip.receiveEvent('mouseover', null);
 }    
window.onload = init;
</script>
4

1 に答える 1

0

Fetch the desired DOM element by the coupon code it contains (assuming coupon codes are unique)

Add something like this below the alert code:

(assuming jquery in the lines of code I added):

clip.addEventListener('complete', function(client, text) {
    alert("Copied Coupon Code to your clipboard:\n" + text);

    //Add the two lines below

    var mylink = jQuery( "p:contains(" + text + ")" ).attr('link'); 
    myWhateverOpenSesameFunctionToOpenMyLink(mylink);
});
于 2012-09-09T16:33:51.470 に答える