html 调用JavaScript函数,没有显示效果?

韬博 2014-09-19 11:28:08
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript">


function method1(){
var i=1;
var j=1;

for( i=1;i<=9;i++){
for( j=1;j<=i;j++){
document.write(i+"*"+j+'='+i*j+" ");

}
document.write('<br>');
}
}
function fun()
{
alert('你好!!');
}


function jianche(){ /* 此函数的调用出现问题 */
var str=form1.user.value;
if(str==""){
alert("请输入真实姓名!");
form1.user.foucs();
}
else{
var objExp=/[\u4E00-\u9FA5]{2,}/;
if(objExp.test(str)==ture){
alert("输入了正确的名字!");

}
else {
alert("输入的名字不正确!");
}
}

}

</script>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>方法调用</title>
<style type="text/css">
<!--
.STYLE1 {font-size: xx-large}
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p align="center" class="STYLE1">登录系统 </p>

<p align="center">用户名:
<input type="text" name="user" />
</p>
<p align="center">密码;
<input type="password" name="password" />
</p>
<div align="center">
<input type="submit" name="Submit" value="提交" />
<input type="reset" name="Submit2" value="重置" />
<input type="button" name="Submit3" onclick="method1()" value="检测" />

<input type="button" name="Submit4" onclick="fun()" value="好" />
<input type="button" name="Submit5" onclick="jianche()" value="很好" /> /*点击按钮“很好”时,没有反应*/
</div>
</form>

</body>
</html>



问题:点击按钮“很好”,没有反应? 求大神解答!谢谢!
...全文
344 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
豪情 2014-09-20
  • 打赏
  • 举报
回复
除了foucs的问题之外,下面2行在兼容性或代码方面也有问题。 var form1 = document.form1; var str = form1.user.value; if(objExp.test(str) == true){

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <script language="javascript">
        function method1(){
            var i = 1;
            var j = 1;

            for(i = 1; i <= 9; i++){
                for(j = 1; j <= i; j++){
                    document.write(i + "*" + j + '=' + i * j + "  ");

                }
                document.write('<br>');
            }
        }
        function fun(){
            alert('你好!!');
        }


        function jianche(){                  /*  此函数的调用出现问题  */
            var form1 = document.form1;
            var str = form1.user.value;
            if(str == ""){
                alert("请输入真实姓名!");
                form1.user.focus();
            } else {
                var objExp = /[\u4E00-\u9FA5]{2,}/;
                if(objExp.test(str) == true){
                    alert("输入了正确的名字!");

                } else {
                    alert("输入的名字不正确!");
                }
            }

        }

    </script>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
    <title>方法调用</title>
    <style type="text/css">
        <!--
        .STYLE1{ font-size:xx-large }
        -->
    </style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
    <p align="center" class="STYLE1">登录系统</p>
    <p align="center">用户名: <input type="text" name="user"/></p>
    <p align="center">密码; <input type="password" name="password"/>
    </p>
    <div align="center">
        <input type="submit" name="Submit" value="提交"/> <input type="reset" name="Submit2" value="重置"/>
        <input type="button" name="Submit3" onclick="method1()" value="检测"/>

        <input type="button" name="Submit4" onclick="fun()" value="好"/>
        <input type="button" name="Submit5" onclick="jianche()" value="很好"/> /*点击按钮“很好”时,没有反应*/
    </div>
</form>

</body>
</html>
天际的海浪 2014-09-19
  • 打赏
  • 举报
回复
是 focus() 不是 foucs()

61,111

社区成员

发帖
与我相关
我的任务
社区描述
层叠样式表(英文全称:Cascading Style Sheets)是一种用来表现HTML(标准通用标记语言的一个应用)或XML(标准通用标记语言的一个子集)等文件样式的计算机语言。
社区管理员
  • HTML(CSS)社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧