问答详情
源自:6-5 光标聚焦事件(onfocus)

光标聚焦事件--为什么点击方框没有提示出现

<!DOCTYPE HTML>

<html>

<head>

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

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

  <script type="text/javascript">

    function message(){

 alert("请选择,您现在的职业!");

}

  </script>

</head>

<body>

请选择您的职业:<br>

  <form><onfocus="message()">

    <select name="career"> 

      <option>学生</option> 

      <option>教师</option> 

      <option>工程师</option> 

      <option>演员</option> 

      <option>会计</option> 

    </select> 

  </form>

</body>

</html>


提问者:一切太突然3125650 2016-04-14 12:15

个回答

  • qq_精慕门4242594
    2016-04-14 14:14:27
    已采纳

    <form><onfocus="message()">  修改为  方案一:<form onfocus="message()"> 

    方案二:    <from><select name="career" onfocus="message()">

  • 慕UI1237056
    2016-04-14 14:17:14

     <form>

        <select name="career"  onfocus="message()">   

          <option>学生</option> 

          <option>教师</option> 

          <option>工程师</option> 

          <option>演员</option> 

          <option>会计</option> 

        </select> 

      </form>

     

    onfocus="message()"放入select标签中

  • SimpleDog
    2016-04-14 14:07:06

    你需要把 onfocus="message()"放入select标签中 你那样写的话并没有针对这个标签实现功能