问答详情
源自:1-9 JavaScript-什么是函数

为什么对话框出不来?求解答,谢谢

<!doctype html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html";charest="gb2312"/>
    <title>函数调用</title>
	<script type="javascript">
	function add()
	{
	alert("飘过");
	}
	</script>
</head>
<body>
	<form>
		<input type="button" value="戳我" onclick="add()"/>
	</form>
</body>
</html>


提问者:A_Zim 2015-12-09 15:51

个回答

  • Caballarii
    2015-12-09 15:56:54
    已采纳

    <script type="text/javascript">

    type要写对,当然html5也支持不写

  • Some233
    2015-12-15 11:20:29

    因为你还没有调用函数add();定义好函数要要调用它

  • 天行健ljg
    2015-12-13 19:56:20

    script开始标签要这样写:<script type="text/javascript">

    或这样写:<script>

  • AoChi
    2015-12-09 16:08:41

    <!doctype html>

    <html>

    <head>

        <meta http-equiv="Content-Type" content="text/html";charest="gb2312"/>

        <title>函数调用</title>

        <script type="javascript"><!--"text/javascript"  可以不写  一般浏览器都支持的--!>

        function add()

        {

        alert("飘过");

        }

        </script>

    </head>

    <body>

        <form>

            <input type="button" value="戳我" onclick="add()"/>

        </form>

    </body>

    </html>