Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jae-jae/iframe-sandbox

动态创建iframe沙箱
https://github.com/jae-jae/iframe-sandbox

Last synced: about 1 month ago
JSON representation

动态创建iframe沙箱

Awesome Lists containing this project

README

        

# iframe-sandbox
动态创建iframe沙箱

## Usage

html
```html


```

js
```javascript
fetch('http://xxx.com/index.html').then((r)=>{
return r.text();
}).then((html)=>{
var a = document.querySelector('#app');
iframe.create(a,html)
})
```