Jump to content

Valera001

Newbie
  • Posts

    4
  • Joined

  • Last visited

Information

  • Sex
    мужской

Valera001's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Заранее спасибо Вот код <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Exam</title> <link rel="stylesheet" href="css/style.css"> <script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"> </script> </head> <body> <style> .ToDo { display: inline-block; margin-right: 30px; } .field { width: 240px; border: 2px solid black; } .btn { border: 2px solid black; outline: none; cursor: pointer; background: #FFffff; box-shadow: 3px 3px 1px -1px rgba(0, 0, 0, 0.75); } .btn:active { background: wheat; } .main-column { display: flex; } .column-item { margin-right: 30px; width: 250px; text-align: center; } .title { border: 2px solid black; padding: 1px 50px; margin-bottom: 5px; } .column { border:2px solid black; height: auto; padding: 12px 0; } #card { border: 2px solid black; background: gray; width: 130px; padding: 0 0 7px 15px; margin: 0 auto 5px; } .card-txt { display: inline-block; padding-right: 21px; } .card-delete { margin: 0 10px 30px 0; display: inline-block; outline: none; cursor: pointer; background: transparent; border: none; } #card-btn { border: 2px solid black; outline: none; cursor: pointer; background: #FFffff; box-shadow: 3px 3px 1px -1px rgba(0, 0, 0, 0.75); } #card-btn:active { background: wheat; } </style> <p class="ToDo">Create new To Do: <input type="text" class="field"></p> <button class="btn">Add</button> <div class="main-column"> <div class="column-item"> <p class="title">To Do</p> <div class="first-column column"> </div> </div> <div class="column-item"> <p class="title">In Progress</p> <div class="second-column column"> </div> </div> <div class="column-item"> <p class="title">Done</p> <div class="third-column column"> </div> </div> </div> <script> $('.btn').on('click', function () { var column = $('.first-column'); var field = $('.field').val(); var div = $('<div id = "card">'); var txt = $('<p class="card-txt"></p>'); txt.html(field); var buttonD = $('<button class="card-delete"><b>X</b></button>'); var inProgress = $('<button id="card-btn">In Progress ></button>'); div.append(txt, buttonD, inProgress); column.append(div); buttonD.on('click', function () { div.remove() }); inProgress.on('click', function () { var secondColumn = $('.second-column'); secondColumn.append(div) inProgress.html('Done >'); inProgress.on('click', function () { var thirdColumn = $('.third-column'); thirdColumn.append(div); inProgress.html('Delete') }) }) }); </script> </body> </html>
  2. Всем привет! Есть такой код: <script> var ul = document.createElement('ul'); while(true) { var str = ''; var user = prompt('Пишите содержимое пункта'); if (user === null || user === str) { break } var li = document.createElement('li'); li.innerHTML = user; ul.appendChild(li); console.log(ul); } </script> когда ввожу что-то в промт, программа создаёт столько ul сколько я ввёл, вместо того чтобы создать один ul со всеми пункатми что я ввёл в промт. Из чего это?
  3. есть след код <article> <h3>What is Lorem Ipsum?</h3> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages.</p> <h3>Where does it come from?</h3> <p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32. from "The Extremes of Good and Evil" by Cicero</p> <h3>Why do we use it?</h3> <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</p> </article> нужно после каждого тега p поставить тег hr, как это можно сделать с помощью Js?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy