Blogger Information
Blog 17
fans 0
comment 0
visits 11501
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
js的三种引入方式——1月16号
iL的博客
Original
947 people have browsed it

 

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>js的三种引入方式</title>
</head>
<body>
    <h1>js的三只引入方式</h1>


    <!-- 第一种 -->
<h3 style="color:red">1.直接在元素的时间方法属性上写js代码</h3>

    <!-- 点击这几个字时,会弹出“哈哈哈哈哈”的字符串 -->
    <h3 id="tips" onclick="alert('哈哈哈哈哈')">Javascript很好玩</h3><br>
<hr>



    <!-- 第二种 -->
<h3 style="color:red">2.将js脚本写在script标签中,仅限当前页面使用</h3><br>

    <!-- 第一个按钮 -->
<form action="">
    <input type="text" name="sit" value="php中文网">
    <button type="button" onclick="alert(sit.value)">显示站点</button>
</form>



   <!-- 第二个按钮 -->
<form action="">
    <input type="text" name="username">
    <button type="button" onclick="check(username)">登陆</button>
</form>


   <!-- 写js脚本 -->
<script>
    function check (username){
        // 非空验证
        // 验证username的值是否等于0
    if(username.value.length===0){
        alert('用户名不能为空')
    }else{
        alert('通过')
    }
    }
    </script>
    <br>
<hr>




    <!-- 第三种 -->

    <h3 style="color:red">3.导入外部样式表</h3>
<form action="" >
    <input type="text" name="" value="" placeholder="我是猪">
    <button>确定</button>
</form>
<!-- 引用外部样式表 -->
<script src="js.js"></script>




</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

 

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post