<head>
<script>
function copyText(str1, str2){
document.getElementById(str2).innerHTML = document.getElementById(str1).innerHTML
}
</script>
</head>
<body id="main">
<H2 id="text1">Hello World</H2>
<H2 id="text2" >No change so far</H2>
<button onclick="copyText(document.main.text1.id, document.main.text2.id)">Change</button>
</body>
我希望能够将元素 ID 作为参数传递给 javascript 函数。有办法吗?