为了账号安全,请及时绑定邮箱和手机立即绑定

函数取名src可以吗,代码应该对的,但试了好几次居然通不过

随意取的函数名,好几次通不过,点击取消设置没反应,,,吧src换个名字通过了。换sr就通过了。。折腾了大半夜。这尼玛是怎么回事???虽然有点钻牛角尖

 <form>

  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->

    <input type="button" onclick="changecolor()" value="改变颜色" >  

    <input type="button" onclick="changewh()" value="改变宽高" >

    <input type="button" onclick="hidetxt()" value="隐藏内容" >

    <input type="button" onclick="showtxt()" value="显示内容">

    <input type="button" onclick="src()" value="取消设置" >

  </form>

  <script type="text/javascript">

//定义"改变颜色"的函数

var char=document.getElementById("txt");

function changecolor()

{char.style.color="red";

char.style.backgroundColor="#ccc";}


//定义"改变宽高"的函数

function changewh()

{char.style.width="300px";

char.style.height="300px";}


//定义"隐藏内容"的函数

function hidetxt(){

    char.style.display="none";}


//定义"显示内容"的函数

function showtxt(){

    char.style.display="block";}


//定义"取消设置"的函数

 function src(){

    var message=confirm("你确定要重置所有设置么?");

    if(message==true)

    {      

         char.removeAttribute('style');

    } 

  }    

  </script>

</body>

</html>


正在回答

1 回答

src是JS中的关键字,在JS中命名变量或者函数的时候,禁止使用JS中的关键字来命名

0 回复 有任何疑惑可以回复我~
#1

Nemonameless 提问者

非常感谢!
2015-02-11 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

函数取名src可以吗,代码应该对的,但试了好几次居然通不过

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信