How to limit display of iframe from an external site to specific domains only

后端 未结 2 1676
一整个雨季
一整个雨季 2020-11-30 08:00

I operate a service where a client\'s content is prepared and displayed in an iframe. The client then copies a rudimentary iframe html tag and pastes it into their web page.

2条回答
  •  一个人的身影
    2020-11-30 08:25

    Sounds like a check that is better made server side - you can check the iFrame markup against a list of valid domain names (or parent domain names) and reject it if they are invalid.

    You could do all of the above in javascript, before injecting the iFrame into the page, but if javascript is off, your validation will not work, not to mention that with development tools on the client any javascript can be modified.

提交回复
热议问题