Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jae-jae/iframe-sandbox
动态创建iframe沙箱
https://github.com/jae-jae/iframe-sandbox
Last synced: about 1 month ago
JSON representation
动态创建iframe沙箱
- Host: GitHub
- URL: https://github.com/jae-jae/iframe-sandbox
- Owner: jae-jae
- Created: 2021-07-28T08:08:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-28T08:09:24.000Z (over 3 years ago)
- Last Synced: 2024-10-29T18:49:20.699Z (about 2 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
})
```