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.
这是我的尝试,它是 ajax 请求功能的一部分:
$("#theSelectID").append($('<option>title=' + ArrayValue[i] + '</option>'));
ArrayValue[i] 是 JSON 对象的一部分,当用户悬停新附加的元素时,我需要抓取并用作 jQuery UI 工具提示。
您没有向选项添加标题属性,因为它会是这样的:
$("#theSelectID").append($('<option title="' + ArrayValue[i] + '">Value</option>'));
你也可以这样做:
$("#theSelectID").append($('<option>').attr('title',ArrayValue[i]));