按钮和警报?

时间:2010-11-11 11:23:30

标签: javascript html

我有一个按钮和一个文本。

如果用户在文本框中输入“Hi”,然后单击按钮,他应该收到一条javascript警告“HELLO!”我该怎么做?

由于

2 个答案:

答案 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>