我有三个元素使用bootstrap模式打开相同的模态对话框。我想知道是否有办法知道哪个元素在shown
事件上打开了模态
$('#myModal').on("shown.bs.modal", function () {
//get the element that opened the modal
//console.log(event.target.id);
});
有可能吗?如果是这样,怎么样?
答案 0 :(得分:2)
event.relatedTarget
为我工作。为可能偶然发现同一问题的人提供此服务
$('#myModal').on("shown.bs.modal", function (evt) {
//get the element that opened the modal
console.log(evt.relatedTarget);
});