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 变量中的值分配给元素的标题?
例如 var params 将具有值 Assigned、Assignee 等。
如何设置元素的标题?
您可以使用标题属性
使用 jQuery 对象
$('#yourElement').attr('title', varibleval);
使用 javascript DOM 对象
$('#yourElement')[0].title = varibleval;