gpt4 book ai didi

jQuery . $ ('' ) 是什么意思?

转载 作者:行者123 更新时间:2023-12-01 07:21:46 27 4
gpt4 key购买 nike

Possible Duplicate:
What does the selector syntax mean in $( “<div/>” ).text( message )

我已经搜索过,但找不到任何相关信息...包括 jQuery 引用...

$('<img/>') 是什么意思?在 jQuery 中是什么意思?我熟悉$('img')仅。

我在这篇文章中遇到了这段代码: http://tympanus.net/codrops/2010/11/16/hover-slide-effect/

但是在代码中,当我用另一个替换一个时,它停止工作,所以我猜它们不一样。

另外,最后一段代码:

.attr('src',$this.attr('src'));

它是做什么用的?它看起来是多余的,但如果我删除它,它也会失败。谁能详细说明一下吗?

谢谢

最佳答案

$(anyHtmlCode)构建一组 jQuery 包装的元素,这些元素是根据您提供的 HTML 构建的。

From the documentation :

If a string is passed as the parameter to $(), jQuery examines the string to see if it looks like HTML (i.e., it has <tag ... > somewhere within the string). If not, the string is interpreted as a selector expression, as explained above. But if the string appears to be an HTML snippet, jQuery attempts to create new DOM elements as described by the HTML. Then a jQuery object is created and returned that refers to these elements. You can perform any of the usual jQuery methods on this object

线路

$someElement.attr('src',$this.attr('src'));

将 $someElement 的 src 设置为与 $this 的 src 相同。

关于jQuery . $ ('<img/>' ) 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12940679/

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