Получите значение из поля HTML и поместите в переменную, используя get.element - PullRequest
0 голосов
/ 20 октября 2018

Как вытащить информацию о пользовательских полях из полей и сохранить в переменной?Мне нужно, чтобы затем вывести эту информацию в div, для базы данных записей о сотрудниках.

    <!DOCTYPE html>
<html>
<head>
    <title>52DA session 5</title>
    <meta charset="utf-8" />
    <link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet" />
    <link rel="stylesheet" type="text/css" href="../css/employee_styles.css"/>
</head>
<body>
    <div id="container">
        <header>
            <h1 id="heading" class="blueTxt">Employee Records</h1>
        </header>
        <div class="left">
        <form>
            <fieldset>
                <legend><h2>Employee Details Entry</h2></legend>            
                <p class=><label>Name: <input class="text" type="text" id="name" /></label></p>
                <p><label>Age: <input class="text" type="text" id="age" /></label></p>
                <p><label>Position: <input class="text" type="text" id="position" /></label></p>
                <p><label>Details: <textarea type="text" id="details" maxlength="114" ></textarea></label></p>              
                <input class="button" type="button" id="addRecord" onclick="" value="Add Record"/>
            </fieldset>
        </form>             

            <div class="sort">
                <h3>Sort</h3>
                <button class="button" id="sortByName">By Name</button>
                <button class="button" id="sortByAge">By Age</button>
                <br/><button class="button" id="reset">Reset Details</button>
                <br /><br />
            </div>
        </div>
        <section>
            <div id="employeeRecords">

            </div>
        </section>

    </div>  

    <script src="../js/employee_script.js"></script>
</body>
</html>

вот мои пустые js

var employees = [];



//--------------------------------------------------------------------------------------------------------------

function Person(name, age, pos, dtls, img){

    this.fullName = name;
    this.employeeAge = age;
    this.position = pos;
    this.details = dtls;

    this.avatarSrc = img;

        this.createProfile = function(){
        var profile = document.createElement("div");
        profile.className = "profileStyle";
        var avatar = document.createElement("img");
        avatar.src = this.avatarSrc;
        avatar.alt = this.fullName();
        profile.appendChild(avatar);
        var profileTxt = document.createElement("p");
        profileTxt.innerHTML = "<b>" + this.fullName() +
        "</b><br />" + this.age + 
        "</b><br />" + this.pos + 
        "</b><br />" + this.dtls;
        profile.appendChild(profileTxt);
        return profile;
        }

    employees.push(this);

пожалуйста, сделайте это как можно проще

ура!любая помощь будет оценена!Я довольно новичок в JS и программировании в целом.

Ответы [ 2 ]

0 голосов
/ 20 октября 2018

Я согласен с @Rao, и вы можете прочитать этот пост, в котором рассказывается, как получить поле ввода ...

Как получить значение поля ввода текста с помощью JavaScript?

Вы можете прочитать с сайта Mozilla https://developer.mozilla.org/it/docs/Web/JavaScript/Guida

И w3schools ...

https://www.w3schools.com/js/

0 голосов
/ 20 октября 2018

Для получения значений из полей формы HTML, откуда вы хотите получить значение

var x = document.getElementById("myText").value;

, и вы можете установить его там, где вы хотите установить

document.getElementById("result").value = x;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...