我正在尝试做的是访问 div 中的隐藏对象。发生的事情是用户将单击按钮,然后该按钮将执行一些任务,例如删除用户。如果我展示我所拥有的,这可能会更容易。
<div class="mgLine">
<input type="hidden" name="tenentID" value="1">
<p class="mgName">James Gear</p>
<input type="text" class="mgBill" value="" placeholder="Post Bill Link Here">
<a href="#" class="mgButton" onclick="alertTest(this)">Submit Bill</a>
<a href="#" class="mgNP">Not Paid</a>
<a href="#" class="mgButton">Change Password</a>
<a href="#" class="mgButton">Delete User</a>
</div>
我希望系统做的是在按下“提交账单”时提醒它从隐藏字段中获取的值。
function alertTest(e){
//e.parentNode
window.alert(e.parentNode.getElementsByTagName("tenentID")[0]);
}
我正在尝试使用 JavaScript DOM 来访问该元素。我希望这至少有一些意义。页面上会有很多这样的条目。