xiaoguozi's Blog
Pay it forword - 我并不觉的自豪,我所尝试的事情都失败了······习惯原本生活的人不容易改变,就算现状很糟,他们也很难改变,在过程中,他们还是放弃了······他们一放弃,大家就都是输家······让爱传出去,很困难,也无法预料,人们需要更细心的观察别人,要随时注意才能保护别人,因为他们未必知道自己要什么·····
首页
新随笔
新文章
联系
管理
常用链接
我的随笔
我的评论
我参与的随笔
随笔分类
.Net(2)
Acm(8)
Ajax(1)
Android & Ios(52)
ARM(3)
C++(13)
Flex(5)
GOF
Linux(30)
Nginx
QT(1)
Shell(1)
SQL(12)
Windows(11)
编程语言(3)
单片机(11)
工具集(3)
开源(16)
框架(26)
休闲时刻(11)
学习笔记(108)
游戏开发(3)
Blog
jingjiaguo
new blog
MyStorage
OpenMP
unix
weibo4android
Company
novem
novem
Friends&Acmers
kikoqiu
linle
sunny_fable
tianyu
zhoulin
枫之羽
QT
CuteQt
Qt-src
搜索
最新评论
1. re: WINDOWS 7 配置驱动开发环境(wdk7.60)
@AndersLing
driver属性页-通用属性-资源-常规-取消显示启动版权标志
--devang
2. re: shrio 权限管理filterChainDefinitions过滤器配置
shrio 权限管理filterChainDefinitions过滤器配置
--麦海堂
3. re: shrio 权限管理filterChainDefinitions过滤器配置
看博客上的背景图片,简直血虐单身狗啊
--gyh112358
4. re: WINDOWS 7 配置驱动开发环境(wdk7.60)
虽然没报错,但是没有生成.sys文件,楼主知道这是什么原因吗
--winniebaby92
5. re: shrio 权限管理filterChainDefinitions过滤器配置
谢谢
--喽啰
阅读排行榜
1. shrio 权限管理filterChainDefinitions过滤器配置 (72126)
2. Android各种访问权限Permission详解(32909)
3. WINDOWS 7 配置驱动开发环境(wdk7.60)(26585)
4. android中onMeasure初看,深入理解布局之一!(转)(19779)
5. mysql 只允许本地登录(tcp/ip or sock)(11433)
jQuery 左右移动
<!
DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"
>
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
>
<
meta
http-equiv
="Content-Type"
content
="text/html; charset=utf-8"
/>
<
title
>
New Web Project
</
title
>
</
head
>
<
script
src
="lib/jquery/jquery-1.3.2.min.js"
></
script
>
<
body
>
<
table
>
<
tr
>
<
td
>
<
select
multiple id
="select1"
style
="width: 100px;height:160px;"
>
<
option
value
="1"
title
="test"
>
选项1
</
option
>
<
option
value
="2"
>
选项2
</
option
>
<
option
value
="3"
>
选项3
</
option
>
<
option
value
="4"
>
选项4
</
option
>
<
option
value
="5"
>
选项5
</
option
>
<
option
value
="6"
>
选项6
</
option
>
<
option
value
="7"
>
选项7
</
option
>
<
option
value
="8"
>
选项8
</
option
>
</
select
>
</
td
>
<
td
>
<
a
href
="#"
id
="delOption"
>
删除
</
a
><
br
/>
<
a
href
="#"
id
="left_up"
>
上移
</
a
><
br
/>
<
a
href
="#"
id
="left_down"
>
下移
</
a
><
br
/>
<
a
href
="#"
id
="allToLeft"
>
全部右移
</
a
><
br
/>
<
a
href
="#"
id
="allToRight"
>
全部左移
</
a
><
br
/>
<
a
href
="#"
id
="add"
>
添加到右边
>>
</
a
><
br
/>
<
a
href
="#"
id
="del"
>
<<
添加到左边
</
a
>
</
td
>
<
td
>
<
select
multiple id
="select2"
style
="width: 100px;height:160px;"
>
</
select
>
</
td
>
</
tr
>
</
table
>
<
script
>
$(
"
#allToLeft
"
).click(
function
()
{
$(
"
#select1 option
"
).appendTo(
"
#select2
"
);
}
);
$(
"
#allToRight
"
).click(
function
()
{
$(
"
#select2 option
"
).appendTo(
"
#select1
"
);
}
);
$(
"
#delOption
"
).click(
function
()
{
$(
"
#select1 option:selected
"
).remove();
}
);
$(
"
#left_up
"
).click(
function
()
{
var
index
=
$('#select1 option').index($('#select1 option:selected:first'));
var
$recent
=
$('#select1 option:eq('
+
(index
-
1
)
+
')');
if
(index
>
0
)
{
var
$options
=
$('#select1 option:selected').remove();
setTimeout(
function
()
{
$recent.before($options )
}
,
10
);
}
}
);
$('#left_down').click(
function
()
{
var
index
=
$('#select1 option').index($('#select1 option:selected:last'));
var
len
=
$('#select1 option').length
-
1
;
var
$recent
=
$('#select1 option:eq('
+
(index
+
1
)
+
')');
if
(index
<
len )
{
var
$options
=
$('#select1 option:selected').remove();
setTimeout(
function
()
{
$recent.after( $options )
}
,
10
);
}
}
);
$(
"
#add
"
).click(
function
()
{
$(
"
#select1 option:selected
"
).appendTo(
"
#select2
"
);
}
);
$(
"
#del
"
).click(
function
()
{
$(
"
#select2 option:selected
"
).appendTo(
"
#select1
"
);
}
);
$(
"
#select1
"
).dblclick(
function
()
{
$(
"
option:selected
"
,
this
).appendTo(
"
#select2
"
);
}
);
$(
"
#select2
"
).dblclick(
function
()
{
$(
"
option:selected
"
,
this
).appendTo(
"
#select1
"
);
}
);
</
script
>
</
body
>
</
html
>
posted on 2009-08-29 22:22
小果子
阅读(620)
评论(0)
编辑
收藏
引用
所属分类:
框架
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
shrio 权限管理filterChainDefinitions过滤器配置
CentOS 6下安装nodejs 0.9.0
Meteor:让实时Web App成为主流
eclipse 4.2 aptana
Yii RBAC(转)
yii 源码调试笔记(1)---theme - module - controller about layout
centos 上安装gearman
Gearman简单介绍
Yii - Create your own Validation Rule
Yii - How to use AJAX form validation
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理