0

这是为 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”直接到贝宝支付页面?

4

1 回答 1

1

从原始属性中删除src属性,然后将您的类添加到原始属性中。这是它的外观。

<input class="btn btn-reveal add-top-half" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
于 2013-07-21T03:13:24.857 回答