节点移动

Posted cj-18

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了节点移动相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        select {
            width: 100px;
            height: 150px;
        }

        form {
            display: flex;
        }

        div {
            width: 40px;
        }
    </style>
</head>

<body>
    <form action="#" method="get">
        <select name="" id="name" multiple>
            <option value="zgl">诸葛亮</option>
            <option value="zf">张飞</option>
            <option value="gy">关羽</option>
            <option value="xc">许褚</option>
            <option value="lb">刘备</option>
            <option value="cc">曹操</option>
        </select>
        <div>
            <input type="button" value="&gt;">
            <input type="button" value="&gt;&gt;">
            <input type="button" value="&lt;">
            <input type="button" value="&lt;&lt;">
        </div>
        <select name="" id="changeName" multiple>

        </select>
        <div>
            <input type="button" value="↑">
            <input type="button" value="↓">
        </div>
    </form>
    <script src="./jquery-1.12.4.min.js"></script>
    <script>
        window.onload = function name(params) {
        //向右移动选中的项 $(
"input[value=‘>‘]").click(function () { $("select option:selected").appendTo("#changeName"); })
        //向右移动所有项 $(
"input[value=‘>>‘]").click(function () { $("select option").appendTo("#changeName"); })
    
       //向左移动选中的项
            $("input[value=‘<‘]").click(function () {
                $("#changeName>option:selected").appendTo("#name");
            })
         //向左移动所有项 $(
"input[value=‘<<‘]").click(function () { $("#changeName option").appendTo("#name"); })
        //上移 $(
"input[value = ‘↑‘]").click(function () { $("#changeName option:selected:first").prev().before($("#changeName option:selected")) $("#name option:selected:first").prev().before($("#name option:selected")) })
        //下移 $(
"input[value = ‘↓‘]").click(function () { $("#name option:selected:last").next().after($("#name option:selected")) $("#changeName option:selected:last").next().after($("#changeName option:selected")) }) } </script> </body> </html>

 







以上是关于节点移动的主要内容,如果未能解决你的问题,请参考以下文章

javascript 用于在节点#nodejs #javascript内设置react app的代码片段

DOM操作 ——如何添加移除移动复制创建和查找节点等。

DOM操作——怎样添加移除移动复制创建和查找节点

如何将 View 类中的代码片段移动到 OnAppearing() 方法?

DOM操作怎样添加移除移动复制。创建和查找节点?

用片段替换时操作栏向下移动