问答详情
源自:6-2 鼠标单击事件( onclick )

代码又哪写错了???为什么点击没反应???

<!DOCTYPE HTML>

<html>

<head>

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

<title>单击事件 </title>

<script type="text/javascript">

  function openwin(){

     window.open('http://www.imooc.com','_blank','height=600,width=400,top=100,toolbar=no,left=0,menubar=no,scrollbars=no,status=no');}

</script>

</head>

<body>

  <form>

    <input name="点击我" type="button" value="点击我" onclick="openWin()"/>

  </form>

</body>

</html>


提问者:weixin_慕仙1209042 2019-08-13 10:42

个回答

  • qq_慕尼黑4299121
    2019-08-13 16:14:53
    已采纳

    JS里面分大小写, openwin()和openWin()是不一样的

  • 慕移动5193967
    2020-01-05 20:20:01

    onclick="openWin()" 改成onclick="openwin()"即可