我有一个按钮和一个文本。
如果用户在文本框中输入“Hi”,然后单击按钮,他应该收到一条javascript警告“HELLO!”我该怎么做?
由于
答案 0 :(得分:1)
只需在脚本中添加以下代码: -
function hello()
{
if(document.getElementById("txtboxid").value == "HI")
alert("HELLO");
}
在按钮的点击事件上调用上述功能。
答案 1 :(得分:1)
<head>
<script type="text/javascript">
function sayHello()
{
theTextbox = document.getElementById("myTextbox");
alert("Hello!");
alert(theTextbox.value);
if(theTextbox.value == "Hi")
{
alert("You did enter Hi in the textbox!");
}
}
</script>
</head>
<body>
<input type="text" id="myTextbox" />
<button onclick="sayHello()" text="Click me!" />
</body>