摘要: jQuery主题选择 阅读全文
posted @ 2010-05-17 15:59 smodi 阅读(198) 评论(0) 推荐(0) 编辑
摘要: jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关 获取一组radio被选中项的值 var item = $('input[@name=items][@checked]').val(); 获取select被选中项的文本 var item = $("select[@name=items] option[@select... 阅读全文
posted @ 2010-05-17 15:53 smodi 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键<table border oncontextmenu=return(false)><td>no</table> 可用于Table2. <body onselectstart="return false"> 取消选取、防止复制3. o... 阅读全文
posted @ 2010-05-17 15:48 smodi 阅读(201) 评论(0) 推荐(0) 编辑
摘要: ScriptManager.RegisterStartupScript(this.Button1, this.GetType(), "alertScript", "window.open('default2.aspx');", true); 其中第一个参数为要注册脚本的控件ID,试了一下,只要是本页面的就行。 第二个参数为注册脚本控件类型,是控件还是this的GetType()都可以,typeOf... 阅读全文
posted @ 2010-05-17 11:29 smodi 阅读(2724) 评论(0) 推荐(0) 编辑