使用 qtip 替换页面上的所有标题属性
有没有办法让所有title属性都变成qtips?
现在我只是浏览并找到所有需要完成的标签,但这很慢而且不可靠。
相反,
$(document).ready(ImportantFunction);
function ImportantFunction() {
Sys.Application.add_load(function () {
$find("ctl31").add_propertyChanged(viewerPropertyChanged);
});
}
function viewerPropertyChanged(sender, e) {
if (e.get_propertyName() === "isLoading") {
var viewer = $find("ctl31");
if (!viewer.get_isLoading())
{
$('table[title]').qtip();
$('td[title]').qtip();
$('input[title]').qtip();
$('a[title]').qtip();
}
}
}//*/
如果可能的话,我只想调用它一次。
If there a way to have all title attributes become qtips?
Right now I'm just going through and finding all the tags that need to be done but this is slow and not reliable.
instead of this
$(document).ready(ImportantFunction);
function ImportantFunction() {
Sys.Application.add_load(function () {
$find("ctl31").add_propertyChanged(viewerPropertyChanged);
});
}
function viewerPropertyChanged(sender, e) {
if (e.get_propertyName() === "isLoading") {
var viewer = $find("ctl31");
if (!viewer.get_isLoading())
{
$('table[title]').qtip();
$('td[title]').qtip();
$('input[title]').qtip();
$('a[title]').qtip();
}
}
}//*/
I just want to call it once if that is possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很简单:
Pretty easy:
使用 $.each() 代替怎么样?它可能看起来微不足道且相似,但它也可能会更快,因为您只在(希望)较小的子集上调用 qTip:
请注意,您也可以用逗号分隔选择器,因此您可以简单地执行以下操作:
或者甚至:
How about using $.each() instead? It probably seems trivial and similar but it also may go faster since you're only calling qTip on a (hopefully) smaller subset:
Note that you can also comma-separate your selectors, so you could simply do:
Or even: