jquery获得下拉框值的代码获取Select :获取select 选中的 text
:$("#ddlRegType").find("option:selected").text();获取select选中的
value:$("#ddlRegType ").val();获取select选中的索引:$(...
分类:
Web程序 时间:
2014-05-27 02:38:48
阅读次数:
270
1 1, get value:$( "#myselect" ).val();//=>
12, get (inner)text:$( "#myselect option:selected" ).text();// => "Mr"ref:How
do I get the text value of a ...
分类:
其他好文 时间:
2014-05-27 02:25:09
阅读次数:
223
/*=======================翻页样式===========================*/.pages
{ width: 660px; text-align: center; font-size: 14px; float: left; margin-left:
340px;...
分类:
Web程序 时间:
2014-05-27 01:54:01
阅读次数:
491
using System;using System.Collections;using
System.Text;using System.DirectoryServices.AccountManagement;using
System.Data;using System.Configuration;...
分类:
其他好文 时间:
2014-05-27 01:31:12
阅读次数:
426
android:inputType参数类型说明android:inputType="none"--输入普通字符android:inputType="text"--输入普通字符android:inputType="textCapCharacters"--输入普通字符android:inputType=...
分类:
移动开发 时间:
2014-05-24 06:43:50
阅读次数:
240
Web文件的ContentType类型大全-来自网络ContentType属性指定服务器响应的HTTP内容类型。如果未指定ContentType,默认为text/html。在ASP中使用它:
".*"="application/octet-stream" ".001"="applicatio...
分类:
Web程序 时间:
2014-05-24 02:23:09
阅读次数:
411
stringdeptId=Request.Form["depts"].Trim();Html.DropDownList()赋默认值:页面代码如下: list =
new List { new SelectListItem { Text = "启用", Value = "0",Selected = ....
分类:
其他好文 时间:
2014-05-19 18:59:16
阅读次数:
269
原文:Snippets不管是在编码,还是写畅销书,你都可能会需要一遍又一遍的用到一些文本的小片断。使用片断来结束这种单调无聊的码字吧,片断是一种智能的模板,它能在合适的上下文中插入你需要的文本内容。创建一个新的片断,选择
Tools | New Snippet... Sublime Text 将为你...
分类:
其他好文 时间:
2014-05-19 18:56:02
阅读次数:
250
工具用 SQLite
Dev数据类型:1.NULL:空值。2.INTEGER:带符号的整型,具体取决有存入数字的范围大小。3.REAL:浮点数字,存储为8-byte
IEEE浮点数。4.TEXT:字符串文本。5.BLOB:二进制对象。=======================添加 sqlite-...
分类:
数据库 时间:
2014-05-19 17:09:21
阅读次数:
349
.val()works on input elements (or any element
with a value attribute?) and.text()will not work on input elements..val()gets
the value of the input ele...
分类:
Web程序 时间:
2014-05-19 12:14:34
阅读次数:
382