定义:
javaScript是一种脚本语言,主要用来向HTML(标准通用标记语言下的一个应用)页面添加交互行为。
使用:
在html页面内(推荐页面底部),声明<script type="text/javascript"></script>来使用
</body> </html> <script type="text/javascript"></script> <script> <!--js代码写在这里--> </script>
记住几个基础词script(脚本)、alert(提醒)、confirm(确认)、prompt(提示)
实例一:confirm
</body> </html> <script type="text/javascript"></script> <script> var c = confirm('饿了么'); alert(c); </script>
运行结果:
点击“确定”: 点击“取消”:
实例二:prompt
</body> </html> <script type="text/javascript"></script> <script> var p = prompt('请输入姓名:'); alert(p); </script>
运行结果:
输入内容点击“确定”
不输入内容直接点击“取消”