zoukankan      html  css  js  c++  java
  • 常用表单操作

    radio

    $("input[name='TemType']:checked").val();

    selecte取值操作

    $('#testSelect option:selected').text();

    或$("#testSelect").find('option:selected').text();

    或$("#testSelect").val();

    checkbox

    $('input[name=close]').is (":checked") 是否选中

    $('input[name=close]:checked').val()  取选中的值

    赋值操作

    var oSelect = $('#TypeSelect_1 option');

                var optionLength = oSelect.length;

                for(var i=0;i<length;i++){

                    if(oSelect.eq(i).val()==tcID){

                        oSelect.eq(i).attr("selected",true); 

                    }

                } tcID为要选中的option的val,当然tcID是根据业务逻辑从外传入的;

    事件

    $("#selectTest").change(function()

    {}

  • 相关阅读:
    flask虚拟环境
    db.Column
    flask_cors跨域请求
    app.config.from_object
    jquery链式原理.html
    swiper轮播
    jquery引用
    animate.html
    设置和获取html里面的内容.html
    jquery获取dom属性方法
  • 原文地址:https://www.cnblogs.com/longze/p/3171059.html
Copyright © 2011-2022 走看看