我正在努力实现你在这个帖子中所做的一切:
Remove anchor links / form targets within iframe content
我试过在这样的函数中包装jQuery:
$('#ifr').load(function(){
$('#ifr').contents().find('a').click(function() { return false; });
}
但这不起作用.你有什么提示或建议?
最佳答案 尝试:
$('#ifr').children('a').click(function(event) {
event.preventDefault();
});