我需要使用 Twitter Bootstrap 3.0 制作一个弹出框显示 iframe,它 popopver 应该根据使用 href 的 onmouseover 事件的链接中提供的值显示 iframe。
我得到了第一个链接,但不是在 3.0 中,而是在 2.0.2 中,但第二个链接应该更改变量的值并显示不同的 iframe,我似乎不知道该怎么做。
$(window).load(function(){
var img = '<iframe frameborder="0" scrolling="no" height="220" width="420"
src="http://dxlite.g7vjr.org/?dx=LU5DX&limit=10"></iframe>';
$("#blob").popover({title: 'Last 10 spots for the selected station', content: img});
})
<a href="#" id="blob" class="btn large primary" rel="popover" style="margin-top:
100px">hover for popover</a>
<a href="#" id="blob" class="btn large primary" rel="popover" onmouseover=""var img =
'<iframe frameborder="0" scrolling="no" height="220" width="420"
src="http://google.com"></iframe>';"" style="margin-top: 100px">hover for popover</a>