Advertisement
StoneHaos

Untitled

May 24th, 2021
1,298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.  
  6. <script>
  7.  
  8. function compare(a, b) {
  9.     if (a.length > b.length)
  10.         return 1;
  11.     else if (a.length < b.length)
  12.         return -1;
  13.     else
  14.         return 0;
  15. }
  16.  
  17. function test() {
  18.     document.getElementById("b").innerHTML = "";
  19.     strs = document.getElementById("a").value.split(" ");
  20.     strs.sort(compare);
  21.     for (var i = 0; i < strs.length; ++ i) {
  22.         document.getElementById("b").innerHTML += strs[i] + " ";
  23.     }
  24. }
  25.  
  26. </script>
  27.  
  28. </head>
  29. <body>
  30.     <input type="text" id="a">
  31.     <button onclick="test()">Ввод</button>
  32.     <p id="b"></p>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement