鼠标经过的效果出不来,帮我看看哪里写错了

<!DOCTYPE HTML>

<html>

<head>

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

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

  <script type="text/javascript">

    function message(){

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

},

function message1(){

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

   new2.style.backgroundColor="pink";

   

}

  </script>

</head>

<body>

  <form>

      <input onmouseover="message()" value="请选择您的职业:">

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

      <option>学生</option> 

      <option>教师</option> 

      <option>工程师</option> 

      <option>演员</option> 

      <option>会计</option> 

    </select> 

  </form>

</body>

</html>


慕用7797256
浏览 1033回答 1
1回答

huangzhong

    function message(){ alert("请选择,您现在的职业!");},把最后这个逗号删了,哈哈
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript