首页 > 代码库 > html使用字符串拼接js函数时传字符串参数

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

<!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="http://www.mamicode.com/click2" />;
    function aaa(param) {
        alert(param);
    }
</script>

 

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