zoukankan      html  css  js  c++  java
  • 函数接收参数并弹出

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>函数接收参数并弹出</title>
    <style>
    body{font:12px/1.5 Tahoma;text-align:center;}
    code,input,button{font-family:inherit;}
    input{border:1px solid #ccc;padding:3px;}
    button{cursor:pointer;}
    </style>
    <script>
    var myFn = function(a, b)
    {
        alert(a.value);
        alert(b.value)    
    };
    window.onload = function ()
    {
        var oInput = document.getElementsByTagName("input");
        var oBtn = document.getElementsByTagName("button")[0];
        oBtn.onclick = function()
        {
            myFn(oInput[0],oInput[1])
        }
    };
    </script>
    </head>
    <body>
    <p><input type="text" value="北京市" /></p>
    <p><input type="text" value="朝阳区" /></p>
    <p><button>传参</button></p>
    </body>
    </html>
  • 相关阅读:
    Zigbee安全基础篇Part.3
    Zigbee安全基础篇Part.2
    Zigbee安全基础篇Part.1
    mini2440 Nor Flash工作原理分析
    fuck the browser mode
    valgrind使用
    windows下自己常用的几个bat
    二叉树可视化
    npm的使用
    tp5的phpword使用
  • 原文地址:https://www.cnblogs.com/mayufo/p/4474925.html
Copyright © 2011-2022 走看看