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

html使用字符串拼接js函数时传字符串参数

时间:2017-01-22 12:08:32      阅读:451      评论:0      收藏:0      [点我收藏+]

标签:value   oct   div   span   innerhtml   round   document   param   bsp   

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
</head>
<body>
    <div id="dd">
        <input type="button" onclick="aaa(‘aaa‘)" value="click1" />
    </div>
</body>
</html>
<script>
    document.getElementById("dd").innerHTML += <input type="button" onclick="aaa(\‘bbb\‘)" value="click2" />;
    function aaa(param) {
        alert(param);
    }
</script>

 

html使用字符串拼接js函数时传字符串参数

标签:value   oct   div   span   innerhtml   round   document   param   bsp   

原文地址:http://www.cnblogs.com/luludongxu/p/6339644.html

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