为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

<script type="text/javascript">

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

0 回复 有任何疑惑可以回复我~
#1

A_Zim 提问者

谢谢了,刚开始自学,有点粗心。谢谢
2015-12-09 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

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

或这样写:<script>

0 回复 有任何疑惑可以回复我~

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


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信