本月博客排行
-
第1名
龙儿筝 -
第2名
flashsing123 -
第3名
xiaoxinye - e_e
- java_doom
- johnsmith9th
- gaochunhu
- sichunli_030
- zw7534313
- 深蓝传说
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- kingwell.leng
- silverend
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- lstcyzj
- flashsing123
- lxguy
最新文章列表
让select 的下拉框实现return false- 比较两个下拉框的值 一致就回滚
比较两个下拉框的值 一致就回滚
var value1='${status!}';
var value2='${statusNew!}';
function checkState(){
var v1=$("#status").val();
var v2=$("#statusNew").val();
if(v1==v2){
alert(&quo ...
js获得表单表单项的值
select
function test(){
var test=document.getElementById("test");
var value=test.options[test.selectedIndex].value;
var text=test.options[test.selectedIndex].text;
alert("-- ...
jquery regex select option
$("#selectId").append('<option value="value">text<option>');
给id为selectId的<select>选项赋值
$("#selectId").each(function(){
$(this).text();//获取<select& ...
insert into select 和 select into from
1.INSERT INTO SELECT语句
语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Table1
要求目标表Table2必须存在,由于目标表Table2已经存在,所以我们除了插入源表Table1的字段外,还可以插入常量。
2/SELECT INTO F ...
Linux select/epoll网络模型
select,epoll网络模型经常在面试中出现,epoll是对poll的优化,是linux下最优秀的网络模型
epoll优点:
# 相对select,没有最大并发数限制 /proc/sys/file-max
# 数据传递(用户空间跟内核空间)通过共享内存(mmap)方式
# epoll_wait 直接返回被触发的fd对应的一块buffer,不需要遍历所有的fd
一.Linux ...
JQuery实现select互换数据和上下移动
JQuery实现select互换数据和上下移动,
原文:JQuery实现select互换数据和上下移动 源代码下载地址:http://www.zuidaima.com/share/1550463322098688.htm
JS 操作select
判断select选项中 是否存在Value="paraValue"的Item 向select选项中 加入一个Item 从select选项中 删除一个Item 删除select中选中的项 修改select选项中 value="paraValue"的text为"
js 操作select的option
注意:Option中的O是要大写的,不然语法报错
1.动态创建select
Javascript代码
function createSelect(){
Select = document.createElement("select");
mySelect.id = "mySelect";
d ...
js 操作select的option
注意:Option中的O是要大写的,不然语法报错
1.动态创建select
Javascript代码
function createSelect(){
Select = document.createElement("select");
mySelect.id = "mySelect";
document.b ...