⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chatsim.js

📁 Telerik是很大的第三方软件制造商
💻 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 + -