删除 iframe 中的链接

CBB*_*CBB 5 jquery

我正在尝试完全实现您在此线程中所做的操作:删除 iframe 内容中的锚链接/表单目标

我尝试将 jQuery 包装在这样的函数中:

$('#ifr').load(function(){
    $('#ifr').contents().find('a').click(function() { return false; });
}
Run Code Online (Sandbox Code Playgroud)

但这是行不通的。你有什么提示或建议?

小智 0

尝试:

$('#ifr').children('a').click(function(event) {
            event.preventDefault();
        }); 
Run Code Online (Sandbox Code Playgroud)