标题:帮我看看这段代码错在哪里?
只看楼主
风中的承诺
Rank: 1
等 级:新手上路
帖 子:331
专家分:0
注 册:2004-10-31
 问题点数:0 回复次数:1 
帮我看看这段代码错在哪里?
<Script language="VBScript" EOR="btnShow" EVENT="onClick">
 dim x
 if form1.text1.Value=" " or form1.text2.Value=" " then
     form1.text3.Value ="请在上面两个框中各输入一个整数!"      
  else
    if CLng(form1.text1.Value)>CLng(form1.text2.Value) then
     x =form1.text1.Value
    else
   x =form1.text2.Value   
end if
  form1.text3.Value =x
  end if  
</Script>


..........

<form name="form1">
  <p>输入第一个整数
    <input type="text" name="text1">
</p>
  <p>输入第二个整数
    <input type="text" name="text2">
</p>
  <p>两者中的最大值
    <input type="text" name="text3">
  </p>
  <p>
    <input type="submit" name="btnShow" value="提交">
    <input type="reset" name="Submit2" value="重置">
</p>
</form>
搜索更多相关主题的帖子: 代码 
2005-03-24 16:43
griefforyou
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:3336
专家分:0
注 册:2004-4-15
得分:0 

<Script language="VBScript" FOR="btnShow" EVENT="onClick"> dim x if form1.text1.Value="" or form1.text2.Value="" then form1.text3.Value ="请在上面两个框中各输入一个整数!" else if CLng(form1.text1.Value)>CLng(form1.text2.Value) then x =form1.text1.Value else x =form1.text2.Value end if form1.text3.Value =x end if </Script>

.......... <form name="form1"> <p>输入第一个整数 <input type="text" name="text1"> </p> <p>输入第二个整数 <input type="text" name="text2"> </p> <p>两者中的最大值 <input type="text" name="text3"> </p> <p> <input type="button" name="btnShow" value="提交"> <!-- type="submit"的话页面就提交了,等于刷新页面--> <input type="reset" name="Submit2" value="重置"> </p> </form>

[此贴子已经被作者于2005-3-25 14:16:23编辑过]


天津网站建设 http://www./
2005-03-25 14:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-13952-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.055372 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved