gpt4 book ai didi

javascript - 单击按钮创建警报以显示 data-id 属性

转载 作者:行者123 更新时间:2023-11-30 08:35:23 25 4
gpt4 key购买 nike

我有一个这样的按钮:

<button data-id="1" onclick="showID()">Show ID</button>

还有一个函数:

<script>
function showID() {
alert(($(this).data("id")));
}
</script>

我只想在警告框中显示数据 ID。我也试过了

alert(($(this).data("id")));

但是又什么都没有...

最佳答案

$(this) 在您的点击函数中指示在草率模式下为 global 或在严格模式下为 undefined

你需要这样做:

<button data-id="1" onclick="showID(this)">Show ID</button>

<script>
function showID(elem) {
alert(($(elem).data("id")));
}
</script>

关于javascript - 单击按钮创建警报以显示 data-id 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31827823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com