How to modify the "Browse" button of the html form to upload files

How to modify the "Browse" button of the html form to upload files

Copy code
The code is as follows:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="generator" content="PSPad editor, www.pspad.com">
<title></title>
</head>
<body> <style>
input{border:1px solid #000;}
.clear{clear:both;}
.ehdel_upload_show input{float:left; margin-top:10px;}
.ehdel_upload{float:left;margin-top:-20px; *margin-top:-40px; filter:alpha(opacity=0);-moz-opacity:0;opacity:0;}
</style> <form method="post" action="" enctype="multipart/form-data">
<div class="ehdel_upload_show">
<input id="ehdel_upload_text" type="text" name="txt" />
<input id="ehdel_upload_btn" type="image" src="upload/2022/web/link_popup.gif" value="Please select file" />
</div>
<div class="clear"></div>
<input type="file" onchange="ehdel_upload_text.value=this.value" class="ehdel_upload" />
</form>
</body>
</html>

<<:  Detailed explanation of jQuery method attributes

>>:  Detailed explanation of the transition attribute of simple CSS animation

Recommend

The concept of MTR in MySQL

MTR stands for Mini-Transaction. As the name sugg...

HTML table only displays the outer border of the table

I would like to ask a question. In Dreamweaver, I...

Summary of pitfalls in virtualbox centos7 nat+host-only networking

Table of contents 1. Problem Background 2. What a...

Introduction and analysis of three Binlog formats in MySQL

one. Mysql Binlog format introduction Mysql binlo...

Chrome plugin (extension) development guide (complete demo)

Table of contents Written in front Preface What i...

Detailed explanation of the correct use of the if function in MySQL

For what I am going to write today, the program r...

Vue uses drag and drop to create a structure tree

This article example shares the specific code of ...

13 JavaScript one-liners that will make you look like an expert

Table of contents 1. Get a random Boolean value (...

Tutorial on building svn server with docker

SVN is the abbreviation of subversion, an open so...

How to install and modify the initial password of mysql5.7.18

For Centos installation of MySQL, please refer to...

Detailed explanation of script debugging mechanism in bash

Run the script in debug mode You can run the enti...

Six border transition effects implemented by CSS3

Six effectsImplementation Code html <h1>CSS...

The latest version of MySQL5.7.19 decompression version installation guide

MySQL version: MySQL Community Edition (GPL) ----...

How to display texture at the position of swipe in CocosCreator

Table of contents 1. Project requirements 2. Docu...

How to find identical files in Linux

As the computer is used, a lot of garbage will be...