jquery给div的innerHTML赋值 $("#id").html()="test"; //或者 $("#id").html("test"); jquery 获取<a>的链接内容 $().innerHTML jquery 给span 赋值 $('#hiddenNote').text(‘getSpanValues’); span取值 $('#hiddenNote').text(); jquery 给标签butt…
Visual Studio 2017中使用正则修改部分内容   最近在项目中想实现一个小工具,需要根据类的属性<summary>的内容加上相应的[Description]特性,需要实现的效果如下 修改前: /// <summary> /// 条形码 /// </summary> public List<GoodsBarcodeEditModel> Barcodes { get; set; } 修改后: /// <summary> /// 条形码…
jquery ajax post 传递数组 ,多checkbox 取值 http://w8700569.iteye.com/blog/1954396 使用$.each(function(){});可以得到checkbox 中对应的值, 在ajax上传的时候需要把 traditional 设置为 true $('.but_delet_choice').click(function(){ var $check_boxes = $('input[type=checkbox][checked=check…
给页面的TextBox设置ReadOnly="True"时,在后台代码中不能赋值取值,下边几种方法可以避免:  1.不设置ReadOnly,设置onfocus=this.blur()  C#代码 <asp:TextBox ID="TextBox1" runat="server" onfocus=this.blur()></asp:TextBox> 文本框不变灰色,但也无法手动修改内容,可以在后台通过Text属性正常赋值取值…
关于多线程下变量赋值取值的一点研究 by:授客 QQ:1033553122 1.代码实践1 #!/usr/bin/env python # -*- coding:utf-8 -*- __author__ = 'shouke' #!/usr/bin/env python # -*- coding:utf-8 -*- import threading import time class TestClass:     def __init__(self, num):         self.num…
Java循环一个对象的所有属性,并通过反射给这些属性赋值/取值 说到循环遍历,最常见的遍历数组/列表.Map等.但是,在开发过程中,有时需要循环遍历一个对象的所有属性.遍历对象的属性该如何遍历呢?查了一下资料,需要用到一些反射的知识! 话不多说,先上代码 首先先定义一个测试对象 Test public class Test { private String aa; private int bb; private String cc; public String dd; public String…
给页面的TextBox设置ReadOnly="True"时,在后台代码中不能赋值取值,下边几种方法可以避免: 1.不设置ReadOnly,设置onfocus=this.blur() <asp:TextBox ID="TextBox1" runat="server" onfocus=this.blur()></asp:TextBox> <asp:TextBox ID="TextBox1" runat…
取值: $("input[name='radioName']:checked").val(); 赋值: $("input[name='radioName'][value=2]").attr("checked",true);…
1.获取选中值,三种方法都可以: $('input:radio:checked').val(); $("input[type='radio']:checked").val(); $("input[name='rd']:checked").val(); 2.设置第一个Radio为选中值: $('input:radio:first').attr('checked', 'checked'); 或者 $('input:radio:first').attr('checked'…
$("input[name='Sex']:checked").val();//取值 $("input[name='radioName'][value=2]").attr("checked",true); //赋值 var zTreeOjb = $.fn.zTree.getZTreeObj("zTreeId"); //ztree的Id zTreeId 获取复选框/单选框选中的节点:var checkedNodes = zTree…