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函数时传字符串参数的主要内容,如果未能解决你的问题,请参考以下文章