我有一个使用引导创建的html按钮,它本质上是一个用于切换网站上项目状态的图标。
<button class='btn' value='${noteid}' onclick='toggleAck(event)'><i class="fas fa-eye"></i></button>
单击时,将触发一个请求:
function toggleAck(event) {
const noteid = event.target.value
console.log(event.target)
$.post({
url: `/note/${noteid}/toggleacknowledge`,
dataType: "json"
},
(response) => {
if (!response.success) {
alert("Failed to mark as read")
}
refreshNotes()
}
)
}
无论我是单击按钮还是图标,toggleack事件都会触发。但是,如果我直接单击图标而不是按钮 value
属性未传递,函数失败。
如何修复此html,以便无论用户单击何处,都能传递值?
1条答案
按热度按时间ivqmmu1c1#
这个
value
在按钮上,但是event.target
是触发事件的元素,因此当您单击图标时,它会尝试从图标中检索值。改用
event.currentTarget
从侦听器附加到的元素中获取值。