systemdraganddropexamplea.htm

来自「这是javascript高级程序设计的源码」· HTM 代码 · 共 16 行

HTM
16
字号
<html>
    <head>
        <title>System Drag And Drop Example</title>
        <script type="text/javascript">
            function handleDrop() {
                alert("Dropped!");
            }
        </script>
    </head>
    <body>
        <p>Highlight some of the text in the textbox on the left and drag it
        into the textbox on the right.</p>
        <input type="text" value="drag this text" /><input type="text" ondrop="handleDrop()" />
    </body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?