Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何为 Jquery 中的文本框的“标题”属性赋值? 我在互联网上搜索过,但没有得到结果。答案将不胜感激
使用此处记录的jQueryattr()方法。
attr()
$('input').attr('title', 'your value');
演示
您可以使用jquery .attr()方法来更改元素的任何属性。 $('#txtbox').attr('title','My Title');将分配title给您的textbox.
jquery
.attr()
$('#txtbox').attr('title','My Title');
title
textbox
查看实时样本
任何属性都可以设置或添加jQuery:
jQuery
$(selector).attr('attribute-name', 'attribute-value')
因此,添加title到textbox:
$('input[type="text"]').attr('title', 'hello');