需要小代码的帮助

时间:2016-07-21 06:47:45

标签: javascript jquery html css coupon

如何创建此类代码,如果您点击获取代码按钮,您将重定向到电子商务商店的另一个标签,点击它后会出现优惠券代码。

enter image description here

3 个答案:

答案 0 :(得分:2)

<强> HTML

// use button 
<button onclick="Redirectpage()">Coupon Code</button>

// use Img 
<img src="" onclick="Redirectpage()"/>

<强>的Javascript

function Redirectpage() {
    location.href = "Put Your website here;
}

答案 1 :(得分:0)

<a href="<your new link here>" target="_blank" class="coupon_code">Coupon Code</a>

在您的javascript代码中

$(document).ready(function(){
    $(".coupon_code").click(function(){

       // place your javascript code for open popup of coupon code

       return true; // it will redirect to href link in new tab
    });
});

答案 2 :(得分:0)

试试这个;

$('button').on('click',function()({

   `$(this).html('your coupon code here');`
   ` window.open('https://link.com', '_blank');

});