| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 575 人关注过本帖
标题:按钮语句出了问题
取消只看楼主 加入收藏
colorlemon
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2008-8-19
收藏
 问题点数:0 回复次数:1 
按钮语句出了问题
作为一个初学者,问个问题是有很多压力的,已经不止一个人骂我了…………

这个东西不完全算是js程序……这只是我自己想的一个练习,就是鼠标指着按钮时按钮改变~但是又遇到可恶的问题……我知道我可能就是遇到了最不该遇到的愚蠢问题了,但我就是对着它看了1小时看不出问题所在~请好心的还记得自己初学时愚蠢样子的程序员们帮帮这个小忙吧,就当是扫盲好不?

程序代码:
<html>
<head>
<script language="JacaScript">
<!--
function changeButton(flag)
{
    var buttonObj=document.getElementById("myButton");
    if(flag==1)
    {
        buttonObj.style.backgroundColor = "lightBlue";
        buttonObj.style.color = "black";
        buttonObj.style.cursor = "pointer";
    }
    else
    {
        buttonObj.style.backgroundColor = "darkBlue";
        buttonObj.style.color = "white";
        buttonObj.style.cursor = "default";
    }
}
//-->
</script>

<style>
#myButton
{
    background-color:darkBlue;border:1px outset;color:white;
}
</style>

</head>

<body>
    <div style="margin-top:10px;">
        <input id = "myButton" type = "button" value = "check it"  onmouseover = "changeButton(1)" onmouseout = "changeButton(0)">
    </div>
</body>

</html>

搜索更多相关主题的帖子: 语句 按钮 
2009-12-27 12:04
colorlemon
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2008-8-19
收藏
得分:0 
谢3楼,原来错在打字上这个纠结~

我看书上程序都写,以为和C++头文件一样了…………
2009-12-27 17:45
快速回复:按钮语句出了问题
数据加载中...
 
   



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

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