3

我使用了 HTML 表单,在该表单中我使用了一个 Button 标签来提交。

图像显示了一些背景,我将背景设置为透明,但它仍然显示一些东西。

我想完全删除背景。

<button type="submit" style="border: 0; background: transparent">
<img src="/images/Btn.PNG" width="90" heght="50" alt="submit" />

4

1 回答 1

0

Why use a button ?

you can :

html :

<form id="myFormID" ... >
     ...
    <img src="..." onclick="myFunction()" />
</form>

javascript :

function myFunction()
{
     //MakeYourTest
     $('#myFormID').submit(); //This line will commit your form
}

and you can do what you want in your javascript code

于 2012-04-20T07:41:18.870 回答