| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>全排列软件</title>
- <script type="text/javascript" src="js/js.js"></script>
- <style>
- .div-1 {
- float: left;
- width: 49%;
- }
- .div-2 {
- float: right;
- width: 49%;
- }
- .div-1-1 {
- height: 425px;
- border: 1px solid;
- }
- .text-0 {
- overflow-x: scroll;
- overflow-y: scroll;
- }
- </style>
- </head>
- <body>
- <div class="div-1">
- <div>
- <p>输入</p>
-
- </div>
- <div id="thingsBox" class="div-1-1">
-
- </div>
- <br>
- <div>
- <input id="in">
- <button onclick="add()">添加</button>
- <button onclick="delall()">清空</button>
- <button onclick="start()">开始</button>
- </div>
-
- </div>
- <div class="div-2">
- <p>全排列</p>
- <textarea class="text-0" id="texts" rows="30" cols="40"></textarea>
- </div>
- </body>
- </html>
|