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.
如何参考在同一页面上查找工具提示?目前我有以下引用外部文件的内容,但是需要更改哪些内容才能知道在同一页面上查看?
$('#tip-container').empty().load('tooltips.html ' + tooltipId).fadeIn(500); ?
谢谢
如果你不需要调用服务器来获取工具提示内容,因为它已经在页面上,你不需要 load()。只需使用 jquery 选择器。根据页面上工具提示内容的确切位置,它可能看起来像这样:
var tooltipContent=$('#'+tooltipId).html(); $('#tip-container').html(tooltipContent).fadeIn(500);