使文本框确定 javascript 变量
Make textbox determine javascript variable
我需要一个 javascript 变量来表示按下按钮时输入到文本框中的任何内容。
基本上,如果有人在文本框中输入 "bubbles",然后单击显示提交的按钮,我需要 "var Item" 才能成为气泡。如何实现该功能?
如果可能的话,我想要一个 if 语句,所以像
var Item = getElementById(whatever the id of the textbox content it)
function Thing() {
if {
getElementById(whatever the id of the textbox content it) = bubbles;
document.open(P2.html);
}
你可以得到这样的值:
<script>
function getValue(){
var value = document.getElementBydId("textbox").value;
}
</script>
<textarea id="texbox"></textarea>
<button onclick="getValue()">
我需要一个 javascript 变量来表示按下按钮时输入到文本框中的任何内容。
基本上,如果有人在文本框中输入 "bubbles",然后单击显示提交的按钮,我需要 "var Item" 才能成为气泡。如何实现该功能?
如果可能的话,我想要一个 if 语句,所以像
var Item = getElementById(whatever the id of the textbox content it)
function Thing() {
if {
getElementById(whatever the id of the textbox content it) = bubbles;
document.open(P2.html);
}
你可以得到这样的值:
<script>
function getValue(){
var value = document.getElementBydId("textbox").value;
}
</script>
<textarea id="texbox"></textarea>
<button onclick="getValue()">