AI 智能问答 - 快速获取信息和解决方案
<div class='row'>
<div class='col-6'>
<button id='answer' onclick='callCHATGPT()' autocomplete='off' class='btn btn-primary w-100' href='#'>
回答
</button>
</div>
<div class='col-6'>
<button onclick='save()' autocomplete='off' class='btn btn-primary w-100' href='#'>
保存
</button>
</div>
</div>
</div>
</div>
<div class='col-12'>
<div class='form-group'>
<label></label>
<textarea class='form-control' id='chatgpt-response' placeholder='长途访问,请耐心等待回答 Ai生成它很快,但是由于网络问题我们需要等待,通常内容越长等待越久 如果长时间没反应请刷新页面重试' rows='26' resize='none' style='width: 100%;height: auto; margin: 0 auto; background-color: #f4f4f4; color: #333; border: 1px solid #ccc; border-radius: 10px; overflow: scroll;'></textarea>
</div>
</div>
</div>
</div>
<script>
var OriginTitile = document.title;
var st;
document.addEventListener('visibilitychange', function () {
if (document.hidden) {
document.title = '(つェ⊂)浏览器崩溃了';
clearTimeout(st);
console.log('hide');
} else {
document.title = '(≧∇≦)ノ 又回来啦~ ' + OriginTitile;
console.log('show');
st = setTimeout(function () {
document.title = OriginTitile;
}, 4000);
console.log('endChange=');
}
});
</script>
原文地址: https://www.cveoy.top/t/topic/PRg 著作权归作者所有。请勿转载和采集!