左侧列表里面的值移到右边去

WBOY
Release: 2016-06-13 12:14:53
Original
1014 people have browsed it

左边列表里面的值移到右边去
比如左边的值是1,2,3,4,5,6
我选择的是5,3,4
为什么页面上面显示的还是3,4,5

------解决思路----------------------
显示的内容和你选择的一样呀
至于顺序,检查右边一下是否有排序
------解决思路----------------------

引用:
右边好像还是从1,2,3,4,5开始排序

那右边也排序了呗!
不要右边排序的话到代码里看看能不能去掉,不行的话代码贴出来瞅瞅
------解决思路----------------------
引用:
现在是我点击编辑如何把我选择的值,显示在右边的框框里面

<br /><script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.js"></script><br /><script type="text/javascript"><br />$(function(){<br />	$(":button").click(function(){<br />		if($(":checkbox:checked").length!=1)<br />		{<br />			alert('请选择一个哦,亲!');<br />			return;<br />		}<br />		$(":text").val($(":checkbox:checked").val());<br />	});<br />});<br /><br /><input type="checkbox" name="ckb" value="1" />1<br /><input type="checkbox" name="ckb" value="2" />2<br /><input type="checkbox" name="ckb" value="3" />3<br /><input type="button" name="btn" value="编辑" /><br /><input type="text" value="" /><br />
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!