-4
A
回答
0
<input type="text" id="input" />
<button onclick="displayEnteredText()">Display</button>
<script>
function displayEnteredText() {
var inputText = document.getElementById("input"); // get the element with id "input" which is the textField
alert(inputText.value); // show the value of the input in alert message
}
</script>
+0
謝謝。我通讀它並理解它。我的問題是我不知道函數document.getElementById。需要了解更多html/js。 –
0
一個可行的方法:
<!DOCTYPE html>
<html>
<head></head>
<body>
<input id="name" value="">
<input type="button" value="show me the name" onclick="alert(document.getElementById('name').value)">
</body>
</html>
另一種可能的方法:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
window.onload = function() {
var buttonElement = document.getElementById('button');
buttonElement.addEventListener('click', function() {
alert(document.getElementById('name').value);
});
}
</script>
</head>
<body>
<input id="name" value="">
<input id="button" type="button" value="show me the name">
</body>
</html>
有了你可以單獨responsabilities第二種方法,一個人可以創建德HTML,和另一個人可以專注在創建JavaScript代碼。
已存在幾種方法可以做到這一點,但有兩個例子,我認爲是足以在目前情況下
0
<body>
<input type="text" name="basicText" id="alertInput">
<button class="alertButton">Click me!</button>
</body>
<script type="text/javascript">
$(".alertButton").click(function(){
var value = $("#alertInput").val();
alert(value + " was entered");
});
</script>
爲了顯示你在警報鍵入的內容,你需要引用文本框裏面的值。由於jquery在帖子中被標記,我用它來獲取文本框中的內容。
0
你也可以試試這個
HTML
<input type="button" id="btnclick" style="width:100px" value="Click Me" />
<input type="text" id="txtbox">
JS
$("#btnclick").click(function(){
var txtvalue = $("#txtbox").val();
alert("User enter " + txtvalue);
})
相關問題
- 1. 如何提醒輸入值
- 2. 如何在用戶輸入時提醒用戶輸入類型文本檢測到點?
- 3. 用戶輸入文本框
- 4. 提交後在輸入框中保留用戶輸入文本
- 5. 使用提醒框詢問用戶輸入
- 6. 如何在用戶沒有輸入郵件時彈出提醒
- 7. Android提醒對話框數字輸入
- 8. 提醒後保留輸入框值
- 9. jQuery文本框用戶輸入長度
- 10. 文本框用戶輸入限制
- 11. 用戶在文本框中的輸入
- 12. 如果聲明需要提醒用戶輸入的號碼
- 13. 如何使用文本輸入框將值分配給變量?
- 14. 通過javascript提醒文本框
- 15. 自定義提醒顏色,並根據文本輸入增加其框架
- 16. 如何在XForms文本框中保存用戶輸入的值
- 17. 如何阻止用戶輸入文本框C中的空間#
- 18. 如何在用戶輸入文本後排序組合框
- 19. 如何用戶輸入在文本框asp.net C#
- 20. 如何驗證限制用戶輸入的文本框|字符
- 21. 如何在用戶輸入值後獲取組合框文本
- 22. 如何將用戶文本框輸入轉換爲整數?
- 23. 如何不允許用戶輸入數字的文本框
- 24. Extjs messagebox提示限制用戶輸入的文本輸入
- 25. 使用JavaScript來提醒從用戶輸入
- 26. 在提示框中輸入文本
- 27. HTML文本框輸入工具提示?
- 28. 按提交文本框中輸入鍵
- 29. 從輸入文本中獲取值然後提醒它
- 30. 如何提醒輸入的文本字符串到單獨的行?
不僅僅是谷歌的onclick事件的人... –
你嘗試了什麼? –
當使用onclick事件時,只要我點擊它,我就可以使按鈕提醒我選擇的消息。但我不知道如何使它在輸入框中提醒什麼 –