gpt4 book ai didi

jquery - 在 jQuery 中,用 $ ('
' , {text : $this. attr ('title' )}) 选择什么?

转载 作者:行者123 更新时间:2023-12-01 05:06:44 29 4
gpt4 key购买 nike

嗯,我对 jQuery 很陌生,在浏览所有文档时我发现了 tutorial关于开发插件的 jQuery 网站。在阅读并试图理解时,我发现了一些我无法找到答案的东西。 6.3 Data 节中的示例里面有这样的代码:

var $this = $(this),
data = $this.data('tooltip'),
tooltip = $('<div />', {
text : $this.attr('title')
});

我知道它是在一行上声明多个变量,但是,最后一个 - 工具提示 - 是我感兴趣的。有人可以对我的无知耐心解释一下工具提示的内容是什么吗处理该行后变量?

提前谢谢您。

最佳答案

它创建一个新的 div 元素,并将 $this.attr('title') 的值传递给 jQuery.fn.text

更多信息:http://api.jquery.com/jQuery/#jQuery2

jQuery( html, props )

html: A string defining a single, standalone, HTML element (e.g. or ).

props: An map of attributes, events, and methods to call on the newly-created element.

As of jQuery 1.4, the second argument can accept a map consisting of a superset of the properties that can be passed to the .attr() method. Furthermore, any event type can be passed in, and the following jQuery methods can be called: val, css, html, text, data, width, height, or offset.

关于jquery - 在 jQuery 中,用 $ ('<div/>' , {text : $this. attr ('title' )}) 选择什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5035087/

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