biliob/Web/js/CommonConfig.js
2024-10-30 18:27:37 +08:00

9 lines
159 B
JavaScript

var headerModel=0;
function createUi(html){
return fetch(html)
.then(response=>response.text())
.then(htmlText=>{
return htmlText;
})
}