摘要:
jquery对<select>的操作比较麻烦,我把常用的收集如下: 1.获取选中值: $("#xmzt option:selected").val() //xmzt是<select>的id2.设置选中项:$("select[@id='pagesize_slt']")[0].selectedIndex = 1;//-----<select>的index从0开始,所以1是第二项 很奇怪的是,我是用id来获取的,应该是唯一值,但$("select[@id='pagesize_slt' 阅读全文
摘要:
需求:页面上有dropdown之类的控件,当选择里面不同值的时候,下面关联的内容跟着改变。思路:把与 dropdown关联的会改变的内容放到PartialView(ascx)里,用JQuery绑定dropdown的change事件,当选择值改变时,用JQuery ajax请求与PartialView相关的Action,得到数据后讲取到的内容覆盖原来的内容。实现:Model 类:代码 public class User { public string UserName { get; set; } public int Age { get; set; } public int UserID { g 阅读全文
摘要:
select控件选项1,获取select选中的value值 $("#selectID").val();2,获取select选中的text的值$("#selectID").find("option:selected").text()3,设置select的第几项为当前选中项$("#selectID").attr("value",2);//设置第二项为当前选中项4,添加option$("selectID").append("<option value='5& 阅读全文
摘要:
<scripttype="text/javascript">//V1methodString.prototype.format=function(){varargs=arguments;returnthis.replace(/\{(\d+)\}/g,function(m,i){returnargs[i];});}//V2staticString.format=function(){if(arguments.length==0)returnnull;varstr=arguments[0];for(vari=1;i<arguments.length;i++){ 阅读全文
摘要:
[{"ID":"275","Cname":"A1"},{"ID":"319","Cname":"A2"},{"ID":"322","Cname":"A3"}] 阅读全文
摘要:
引言: 服务器是我们开发的程序是32位的如何在windows2008的IIS上运行解决方法:1. 新建立应用程序池 在这个应用程序池上 有一个选项(是否32位程序) 选择True建立虚拟目录 对应到这个应用程序池上2. 如果是windows应用程序 只是需要在编译的时候 属性/生成/目标平台 选择X86 即可 阅读全文
摘要:
1.__doPostBack("id","")方法2.GetPostBackEventReference方法作用3.客户端如何触发服务器端控件的事件右边提供程序用此方法实现在客户端单击按钮后,禁用此按钮,直到程序运行完毕再开启按钮。(单击右边下载)下面再举个小例子.前台页面 有个服务器控件 <asp:Button id="Button1" runat="server" Text="Button"></asp:Button> 一个客户端控件用来触发服务器端<a hre 阅读全文
摘要:
例如: protected void Page_Load(object sender, EventArgs e) { //.net1.1 Button1.Attributes.Add("onclick", "this.disabled=true;" + this.GetPostBackEventReference(this.Button1)); //.net 2.0以上 Button1.Attributes.Add("onclick", "this.disabled=true;" + this.ClientScri 阅读全文
摘要:
1. 打开新的窗口并传送参数: 传送参数: response.write("<script>window.open('*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"')</script>") 接收参数: string a = Request.QueryString("id"); string b = Request.QueryString("id1"); 2.为按钮添加对话框 Button1.Attribu 阅读全文
摘要:
3、在button的onClick事件中输入this.RegisterClientScriptBlock("e","<scriptlanguage=javascript>history.go(-2);</script>");三、弹出框1、 弹出提示框Alert("提示框,呵呵");2、 弹出确认框return confirm("确认框,呵呵");四、其它常用JS1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠 阅读全文