How to use an image button as a reset form button

How to use an image button as a reset form button
When we make a form, we often set a submit button and a reset button. Sometimes we may use some small pictures to replace these buttons for the sake of the page's appearance. The method of using pictures for submit buttons is very simple, and I believe everyone knows how to do it. So how do you use an image button as a reset form button? Please continue reading.

Here I assume that I have two images: submit button image ok.gif, reset button image reset.gif

The code to submit a form using an image is: <input type="image" src="ok.gif" alt="" width="93" height="33" border="0" />

The code to use an image as the reset form is: <input type="image" src="reset.gif" alt="" width="93" height="33" border="0" onclick="reset();return false;" />

<<:  MySQL Learning: Three Paradigms for Beginners

>>:  CSS3 speeds up and delays transitions

Recommend

MySQL 8.0.15 download and installation detailed tutorial is a must for novices!

This article records the specific steps for downl...

Detailed example of SpringBoot+nginx to achieve resource upload function

Recently, I have been learning to use nginx to pl...

Markup Language - Image Replacement

Click here to return to the 123WORDPRESS.COM HTML ...

JS Decorator Pattern and TypeScript Decorators

Table of contents Introduction to the Decorator P...

JavaScript implements double-ended queue

This article example shares the specific code of ...

Solve the problem of using linuxdeployqt to package Qt programs in Ubuntu

I wrote some Qt interface programs, but found it ...

Mysql 5.7.19 free installation version encountered pitfalls (collection)

1. Download the 64-bit zip file from the official...

Build a Docker private warehouse (self-signed method)

In order to centrally manage the images we create...

Complete steps for deploying confluence with docker

Confluence is paid, but it can be cracked for use...

Solution to the problem that the mysql8.0.11 client cannot log in

This article shares with you the solution to the ...

Demystifying the HTML 5 Working Draft

The World Wide Web Consortium (W3C) has released a...

Detailed tutorial on installing and configuring MySql5.7 on Ubuntu 20.04

Table of contents 1. Ubuntu source change 2. Inst...

JS array deduplication details

Table of contents 1 Test Cases 2 JS array dedupli...