我需要帮助。 我有以下代码:脚本返回每个按钮的ID。
之后,我需要以Wordpress中的联系人表单7生成的形式返回所选的id值。
在我的情况下,每个按钮都会打开一个带有表单的模态。 但是我无法以表格形式返回id ...
function getId(myId)
{
document.getElementById("recupTitle").textContent = myId.id;
}
<ul>
<li><button id="1" onclick="getId(this);">Click the button 1</button></li>
<li><button id="2" onclick="getId(this);">Click the button 2</button></li>
<li><button id="3" onclick="getId(this);">Click the button 3</button></li>
<li><button id="4" onclick="getId(this);">Click the button 4</button></li>
<li><button id="5" onclick="getId(this);">Click the button 5</button></li>
</ul>
<p id="recupTitle"></p>
答案 0 :(得分:0)
点击后,还可以使用ID
设置表单值document.getElementById("myField").value = myId.id;