我想用js显示输入字段文本

时间:2018-04-07 16:14:25

标签: javascript html

这是我的代码刚开始学习,所以不知道我做错了什么。帮助!

<html>
<head>
</head>
<body>
<input type = "text" placeholder = "Number One" id = "one"></input><br>
<input type = "text" placeholder = "Number Two" id = "two"></input><br>
<button onclick = "test()">Click Me</button><br>
<script>
function test()
{
document.getElementById("one").value;
}
</script>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

Here表明它正在发挥作用。您所要做的就是确定一个显示价值的功能。

JS

function test()
{
var x = document.getElementById("one").value;
  alert(x);
}

答案 1 :(得分:0)

看看你的HTML,它应该是

    <script>
    function test() {
        alert('function called');
        document.getElementById("one").value;
    }
</script>

您可以在脚本标记中放置警报或console.log,以了解其是否被命中。

    from openpyxl import Workbook
    wb = Workbook()
    Dest_filename = 'excel_file_path'
    ws=wb.active
    print(ws.cell(row=row_number, column=column_number).value)

感谢。