zoukankan      html  css  js  c++  java
  • js的HTML属性操作

    <input type="button" id="btn1" value="按钮" />

    HTML属性操作:读、写

      属性名

      属性值

    属性都操作:获取、找到

      元素.属性

    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script>
            window.onload=function () {
                var oBtn=document.getElementById('btn1');
                alert(oBtn.value);
            };
        </script>
    </head>
    <body>
        <input type="button" id="btn1" value="按钮" />
    </body>

      如果你不想一访问页面就弹出窗口,那就要加一个点击事件;(匿名函数)

    <script>
            window.onload=function () {
                var oBtn=document.getElementById('btn1');
                oBtn.onclick=function () {
                    alert(oBtn.value);    //调用一个点击事件
                };
            };
        </script>

      再来看一个操作:

    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script>
            window.onload=function () {
                var oBtn=document.getElementById('btn1');
                var oText=document.getElementById('text1');
                oBtn.onclick=function () {
                    //alert(oBtn.value);
                    alert(oText.value);
                };
            };
        </script>
    </head>
    <body>
        <input type="text" id="text1" />
        <input type="button" id="btn1" value="按钮" />
    </body>

    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script>
            window.onload=function () {
                var oBtn=document.getElementById('btn1');
                var oText=document.getElementById('text1');
                var oSelect=document.getElementById('select1');
                oBtn.onclick=function () {
                    //alert(oBtn.value);
                    //alert(oText.value);
                    alert(oSelect.value)
                };
            };
        </script>
    </head>
    <body>
        <input type="text" id="text1" />
        <select id="select1">
            <option value="北京">北京</option>
            <option value="上海">上海</option>
            <option value="杭州">杭州</option>
        </select>
        <input type="button" id="btn1" value="按钮" />
    </body>

  • 相关阅读:
    接Oracle11g_client精简版安装步骤(2019年11月18日)之Plsql配置
    Oracle11g_client精简版安装步骤(2019年11月18日)
    PC端微信版本过低问题
    Windows下Nginx无法启动且进程里没有?
    Eclipse中复制项目后,怎么更改项目名等相关配置?(2019年10月17日)
    tomcat改端口号
    java基础
    数据库
    数组相关
    Linux系统实战
  • 原文地址:https://www.cnblogs.com/zzjeny/p/5599130.html
Copyright © 2011-2022 走看看