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

Posted WmW

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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="click2" />;
    function aaa(param) {
        alert(param);
    }
</script>

 

以上是关于html使用字符串拼接js函数时传字符串参数的主要内容,如果未能解决你的问题,请参考以下文章

python函数调用时传参方式

急!js如何循环拼接字符串

拼接的html字符串中如何将对象作为参数传递给事件处理函数

js字符串拼接的问题

在用js拼接html时,给元素加不上事件的问题

数组,for循环,字符串拼接函数concat().