修改script位置

pull/6/head
guanghongwei 2015-02-01 23:33:38 +08:00
parent 3d1df73a99
commit 70fe42f359
2 changed files with 39 additions and 38 deletions

View File

@ -59,3 +59,35 @@ function GetTableDataBox() {
return returnData;
}
function selectAll(){
var checklist = document.getElementsByName ("selected");
if(document.getElementById("select_all").checked)
{
for(var i=0;i<checklist.length;i++)
{
checklist[i].checked = 1;
}
}else{
for(var j=0;j<checklist.length;j++)
{
checklist[j].checked = 0;
}
}
}
function move(from, to) {
$("#"+from+" option").each(function(){
if ( $(this).prop("selected") == true ) {
$("#"+to).append(this);
}
});
}
function move_all(from, to){
$("#"+from).children().each(function(){
$("#"+to).append(this);
});
}

View File

@ -1,44 +1,13 @@
<script src="/static/js/jquery-2.1.1.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
<script src="/static/js/base.js"></script>
<!--<script>-->
<!--$(document).ready(function(){-->
<!--$('.i-checks').iCheck({-->
<!--checkboxClass: 'icheckbox_square-green',-->
<!--radioClass: 'iradio_square-green'-->
<!--});-->
<!--});-->
<!--function selectAll(){-->
<!--var checklist = document.getElementsByName ("selected");-->
<!--if(document.getElementById("select_all").checked)-->
<!--{-->
<!--for(var i=0;i<checklist.length;i++)-->
<!--{-->
<!--checklist[i].checked = 1;-->
<!--}-->
<!--}else{-->
<!--for(var j=0;j<checklist.length;j++)-->
<!--{-->
<!--checklist[j].checked = 0;-->
<!--}-->
<!--}-->
<!--}-->
<!--function move(from, to) {-->
<!--$("#"+from+" option").each(function(){-->
<!--if ( $(this).prop("selected") == true ) {-->
<!--$("#"+to).append(this);-->
<!--}-->
<!--});-->
<!--}-->
<!--function move_all(from, to){-->
<!--$("#"+from).children().each(function(){-->
<!--$("#"+to).append(this);-->
<!--});-->
<!--}-->
<script>
{# $(document).ready(function(){#}
{# $('.i-checks').iCheck({#}
{# checkboxClass: 'icheckbox_square-green',#}
{# radioClass: 'iradio_square-green'#}
{# });#}
{# });#}
</script>