📄 chatsim.js
字号:
var thetime=new Date();
var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
// feed chat
function feedChat()
{
document.getElementById('chatField').innerHTML += '<font style="color: red; font-weight: bold; margin-left: 2px;">Guest_02 (' + nhours + ':' + nmins + ':' + nsecn + ')</font>: ' + document.getElementById('chatFeed').value + '<br />';
document.getElementById('chatFeed').value = '';
}
// cancel conversation submission
function cancelSubmit()
{
document.getElementById('chatFeed').value = '';
}
// display statusbar text
function setInfo(btnText)
{
document.getElementById('statusBar').innerHTML = btnText;
}
// automatic greeting
window.onload = function()
{
setTimeout("document.getElementById('chatField').innerHTML += '<font style=\"color: red; font-weight: bold; margin-left: 2px;\">Guest_01 (' + nhours + ':' + nmins + ':' + nsecn + ')</font>: ' + 'Hi there!' + '<br />'", 3000)
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -