gpt4 book ai didi

javascript - "this"在 jQuery 中是如何工作的

转载 作者:行者123 更新时间:2023-11-30 07:27:36 27 4
gpt4 key购买 nike

有人可以解释一下“this”在 jQuery 中是如何工作的吗?我试图在网上找到一些资料,但是因为“this”在他通常的意思中使用很多,所以我找不到任何好的信息。

我希望能够更改列表元素 ( <li> ) onclick 的背景,而不需要给每个列表元素一个 id。

最佳答案

$('li').on('click.namespace', function() {

console.log(this); /* this is a reference to the DOM
element you clicked */

console.log($(this)); /* this is a jQuery reference to the
DOM element you clicked */

/* using jQuery reference you can change the background in this way */
$(this).css('background-image', 'url(...)');




});

关于javascript - "this"在 jQuery 中是如何工作的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9358664/

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