码迷,mamicode.com
首页 > Web开发 > 详细

js函数的传参问题

时间:2016-12-27 22:15:42      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:color   round   s函数   put   执行   type   pre   rip   doc   

<!Doctype html>
<html>
    <head>
        <title>js的传参问题</title>
        <script type="text/javascript">
            function get(username) {
                alert(username);
            }
        </script>
    </head>
    <body>
        <input type="button" value="点我" onclick="get(${user.username })"/>
    </body>
</html>    

形如上面的代码,因为${user.username }得到的是字符串类型,假设得到的值为zhangSan。这样get(${user.username})就相当于get(zhangSan),但是这样写的js函数根本就不会执行。要写成下面的形式,js函数才会执行。当时因为这个问题,困扰我半天。。。。。。

<!Doctype html>
<html>
    <head>
        <title>js的传参问题</title>
        <script type="text/javascript">
            function get(username) {
                alert(username);
            }
        </script>
    </head>
    <body>
        <input type="button" value="点我" onclick="get(‘${user.username}‘)"/>
    </body>
</html>

 

js函数的传参问题

标签:color   round   s函数   put   执行   type   pre   rip   doc   

原文地址:http://www.cnblogs.com/xphDeV/p/6227384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!