紧急求助:在中文的系统下,怎么让后面的按钮显示的是英文呢?

时间:2022-04-11 08:10:06
在中文的系统下,怎么让<input type=file>后面的按钮显示的是英文呢?

5 个解决方案

#1


不可以

#2


那怎么办啊??要显示英文怎么办啊??

#3


这个是浏览器定死的,你用英文浏览器就显示英文了。
也可以用一个文本框加一个按钮来模仿。

#4


<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
<script language="javascript">
function a()
{
document.frmZb.StrLJ.value=document.frmZb.file.value;
//document.frmZb.file.focus();
//alert("请点击浏览来选择文件");

}</script >
</head>

<body>
<form name="frmZb" method="POST" >
<input type="file" id="file" name="file" style="display:none">
<input type="text" name="StrLJ" value="" readonly>    
<input type="button" onclick="file.click();a()" value="Browse..." >    

</from>    
</form>
</body>

</html>

#5


高手啊

#1


不可以

#2


那怎么办啊??要显示英文怎么办啊??

#3


这个是浏览器定死的,你用英文浏览器就显示英文了。
也可以用一个文本框加一个按钮来模仿。

#4


<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
<script language="javascript">
function a()
{
document.frmZb.StrLJ.value=document.frmZb.file.value;
//document.frmZb.file.focus();
//alert("请点击浏览来选择文件");

}</script >
</head>

<body>
<form name="frmZb" method="POST" >
<input type="file" id="file" name="file" style="display:none">
<input type="text" name="StrLJ" value="" readonly>    
<input type="button" onclick="file.click();a()" value="Browse..." >    

</from>    
</form>
</body>

</html>

#5


高手啊