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

onfocus到底应该放在哪儿?

onfocus是放在form里面还是放在select里面,谁能详细解释下?谢谢

ps:我放在select里面网页就一直跳出弹窗,根本停不下来QAQ

正在回答

2 回答

我也是这个问题

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

<!DOCTYPE HTML>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title> 光标聚焦事件 </title>

  <script type="text/javascript">

    function message(){

var new2=document.getElementById("new1");

     new2.style.backgroundColor="pink";

}

    function message1(){

        var new3=document.getElementById("new1");

       // new3.style.backgroundColor="purple";

       new3.removeAttribute("style");

    }

  </script>

</head>

<body>

请选择您的职业:<br>

  <form>

    <select name="career" onfocus="message()" onblur="message1()" id="new1"> 

      <option>学生</option> 

      <option>教师</option> 

      <option>工程师</option> 

      <option>演员</option> 

      <option>会计</option> 

    </select> 

  </form>

</body>

</html>


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

侠客岛的含笑

我怎么用这个不弹窗啊
2016-04-18 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

onfocus到底应该放在哪儿?

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