js坚持不懈之16:使用js向HTML元素分配事件

2019-02-20 00:44:50来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

向 button 元素分配 onclick 事件:

<!DOCTYPE html>
<html>
<body>

<p>点击按钮就可以执行 <em>displayDate()</em>函数。</p>

<button onclick = "displayDate()">点击点击点击</button>

<script>
function displayDate()
{
    document.getElementById("demo").innerHTML = Date();
}
</script>

<p id = "demo">会展示日期</p>

</body>
</html>

 2.

<!DOCTYPE html>
<html>
<body onload = "checkCookies()">

<script>
    function checkCookies()
    {
        try
        {
            if (navigator.cookieEnabled == true)
            {
                alert("已启用 cookie")
            }
            else
            {
                alert("未启用 cookie")
            }
        }
        catch (err)
        {
            alert('asdf')
        }
    }

</script>

<p>提示框会告诉你,浏览器是否已启用 cookie。</p>
</body>
</html>

3. 

<!DOCTYPE html>
<html>
<head>
<script>
function myF()
{
    var x = document.getElementById("fname");
    x.value = x.value.toUpperCase();
}
</script>
</head>

<body>
请输入应为字符:<input type = "text" id = "fname" onchange = "myF()">
<p>当您离开输入字段时,会触发将输入文本转换为大写的函数。</p>
</body>
</html>

 


原文链接:https://www.cnblogs.com/zrmw/p/10399783.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:vue的表单编辑删除,保存取消功能

下一篇:实例演示获取键盘的KeyCode