15 lines
424 B
Markdown
15 lines
424 B
Markdown
```html
|
|
<body>
|
|
<img src="https://placehold.co/600x400" />
|
|
<div id="demo" style="color:white;font-size:12px">123</div>
|
|
<button id="send" class="ui-button ui-widget ui-corner-all">发送“你好”</button>
|
|
<script>
|
|
$("#demo").text(JSON.stringify(window.$mujian.ai.chat.project))
|
|
fetch("https://www.baidu.com");
|
|
|
|
$("#send").click(async () => {
|
|
window.$mujian.ai.chat.complete('你好');
|
|
});
|
|
</script>
|
|
</body>
|
|
``` |