如何在JavaScript中显示html文本字段的内容?

时间:2019-06-26 14:06:35

标签: javascript html

修订问题: 如何显示在JavaScript中输入到html文本字段中的文本?

https://jsfiddle.net/bjc7em1w/

<tr>
  <td id="number1"> (1)</td>  
  <td> <input type="radio" name="radio1" id="standardA1"> </td> 
  <td> <input type="radio" name="radio1" id="standardI1"> </td> 
  <td id="standard1">Describe the reason for the development of 
                     the plan and its annexes.</td>
   <td> <input type="text" id="comments1"> </td>     
</tr>

2 个答案:

答案 0 :(得分:1)

由于问题的描述很容易阅读,所以我只回答一个问题:

var text = document.querySelector("#textbox").value;
alert("The textbox value is: " + text);

如果对此有任何疑问或想让我详细说明,请这么说。

答案 1 :(得分:0)

如果我理解正确,那么您正在寻求添加与您的表格有关的反馈消息。您可以在要显示消息的部分添加一个空的span标签,并在模糊时调用它。

例如,添加以下内容:

<tr>
    <td id="number1"> (1)</td>  
    <td> <input type="radio" name="radio1" id="standardA1"> </td> 
    <td> <input type="radio" name="radio1" id="standardI1"> </td> 
    <td id="standard1">Describe the reason for the development of the 
                       plan and its annexes.</td>
    <td> <input type="text" id="comments1" onblur="message()"> 
         <span class="message" id="message"></span>
    </td>     
</tr>

当用户离开调用onblur的部分时,可以像这样调用消息:

function message() { 
   document.getElementById("message").innerHTML = "message written here";
}

您可以添加功能来确定何时以及如何显示消息。