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

来源:1-9 JavaScript-什么是函数

A_Zim

2015-12-09 15:51

<!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>


写回答 关注

4回答

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

    <script type="text/javascript">

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

    A_Zim

    谢谢了,刚开始自学,有点粗心。谢谢

    2015-12-09 15:58:43

    共 1 条回复 >

  • 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>


JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题