第1个回答 推荐于2016-06-02
请看下面网页代码,它具有你说的功能
<html>
<head>
<script language="vbscript" type="text/vbscript">
function FunTitle()
a=form1.BrowseFile.value
if a>=1000 then
a=a*1.2
elseif a>=800 then
a=a*1.15
else
a=a*1.1
end if
form1.LinkTitle.value=a
end function
</script>
</head>
<body>
<form name="form1">
你现在的工资额:
<input name="BrowseFile" type="text" onChange="FunTitle()" value="" size="56"><br>
加薪后的工资额:
<input name="LinkTitle" type="text" value="" size="56"><br>
<form>
</body>
<html>本回答被提问者采纳