我创建了一个链接,该链接加载了一个带有链接的 powertip 工具提示,然后我有一个 jquery 函数来查找该链接的类,然后在 sharepoint 的模式对话框中打开内容。现在这适用于页面中已有的链接,但不适用于工具提示中的链接。
我怎样才能解决这个问题?
这是 powertip 工具提示的代码。
$(function() {
var mouseOnDiv = $('.linkclass');
var tipContent = $('<a href="#" class="modal-link">Text</a>'
);
mouseOnDiv.data('powertipjq', tipContent);
mouseOnDiv.powerTip({
placement: 's',
mouseOnToPopup: true
});
});
这是要加载的模式对话框的代码。
$(document).ready(function() {
$("a.modal-link").on("click", function(e){
var destination = $(this).attr("href");
if(destination.indexOf("?") > -1) {
destination += "&IsDlg=1";
}
else {
destination += "?IsDlg=1";
}
var title = $(this).text();
var dialog = SP.UI.ModalDialog.showModalDialog({
title: title,
url: destination,
autoSize: true,
width: 1024,
height: 800
});
e.preventDefault();
});
});