How to force all links to open in iframe

2019-05-31 01:39发布

问题:

Is there a way of forcing every link to open in an iframe? I have control of some of the websites I want to show but not others. I am willing to use php or javascript.

Thanks

回答1:

You can use jQuery:

$(document).ready(function(){
   $('a').attr('target', 'iframeNameHere');
});

Here little sample.