这是为paypal按钮创建图像的当前html代码
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
但我想使用我制作的自定义按钮类,看起来像这样
<a class="btn btn-reveal add-top-half" href="http://www.google.com">Buy Now!</a>
有没有办法使用自定义按钮类“btn btn-reveal add-top-half”来指向paypal支付页面?
答案 0 :(得分:1)
从原始文件中删除src
属性,然后将您的类添加到原始文件中。
这是它的外观。
<input class="btn btn-reveal add-top-half" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">