当我点击页面上的链接时,我正在尝试将jQuery注入HTML页面以创建弹出窗口。我在选择器和/或语法方面遇到了麻烦。
HTML
<a href="/leads/19365876/edit" class="hoverable edit">
<i class="icon-pencil">
</i>
</a>
尝试解决方案
jQuery(document).ready(function($) {
jQuery('a.hoverable.edit').live('click', function(){
newwindow=window.open($(this).attr('href'),'','height=200,width=150');
if (window.focus) {newwindow.focus()}
return false;
});
});
答案 0 :(得分:0)
你忘了给'_blank&#39;窗口名称:
window.open($(this).attr('href'),'_blank','height=200,width=150');