zoukankan      html  css  js  c++  java
  • html input 标签 的text和button类型 readonly和disabled属性

    <input type="text" id="txtid" value="哈哈哈"/><br/><!--可手动修改值-->
    <input type="text" id="txtidreadonly" value="哈哈哈" readonly/><br/><!--不可手动修改值-->
    <input type="text" id="txtiddisabled" value="哈哈哈" disabled/><br/><!--不可手动修改值-->
    <input type="button" value="settext" onclick="setfunc1()"/><br/>
    <input type="button" value="gettext" onclick="getfunc1()"/><br/>
    
    <input type="checkbox" id="cbid" />嘿嘿<br/><!--可手动点击复选框-->
    <input type="checkbox" id="cbidreadonly" readonly/>嘿嘿<br/><!--可手动点击复选框-->
    <input type="checkbox" id="cbiddisabled" disabled/>嘿嘿<br/><!--不可手动点击复选框-->
    <input type="button" value="setcbx" onclick="setfunc2()"/><br/>
    <input type="button" value="getcbx" onclick="getfunc2()"/><br/>
    function setfunc1(){
        $("#txtid").val("1111");
        $("#txtidreadonly").val("1111");
        $("#txtiddisabled").val("1111");
    }
    
    function getfunc1(){
        console.log($("#txtid").val());
        console.log($("#txtidreadonly").val());
        console.log($("#txtiddisabled").val());
    }
    
    function setfunc2(){
        $("#cbid").attr("checked", true);
        $("#cbidreadonly").attr("checked", true);
        $("#cbiddisabled").attr("checked", true);
    }
    function getfunc2(){
        console.log($("#cbid").attr("checked"));
        console.log($("#cbidreadonly").attr("checked"));
        console.log($("#cbiddisabled").attr("checked"));
    }

  • 相关阅读:
    高效的多维空间点索引算法 — Geohash 和 Google S2
    Geohash距离估算
    位图(BitMap)索引
    深入浅出空间索引:为什么需要空间索引
    harbor rest api 转graphql api
    ringojs java jar 集成使用
    ringojs 使用rp 包管理web 应用依赖
    ringojs 的包管理
    ringojs 基于jvm 的javascript 平台试用
    graphql cli 开发graphql api flow
  • 原文地址:https://www.cnblogs.com/xuqiulin/p/11923955.html
Copyright © 2011-2022 走看看