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

📄 tarena.js

📁 近几年来
💻 JS
字号:
function GetDate (nText)
{
  reVal = window.showModalDialog ("../day.htm", '',"status:no;center:yes;scroll:no;resizable:no;help:no;dialogWidth:255px;dialogHeight:260px");
  if (reVal != null)
  {
    if (nText == 1)
      document.pollForm.labelStartDate.value = reVal;
    if (nText == 2)
      document.pollForm.labelEndDate.value = reVal;
  };
};

function TrimControls ()
{
    if (document.pollForm.selectDepart.selectedIndex < 0)
        document.pollForm.selectDepart.selectedIndex = 0;
    if (document.pollForm.selectStuff.selectedIndex < 0)
        document.pollForm.selectStuff.selectedIndex = 0;
}

function QueryRecord ()
{
    if (document.pollForm.labelStartDate.value == "") {
	alert("?????????");
	return;
    }
    if (document.pollForm.labelEndDate.value == "") {
	alert("?????????");
	return;
    }
    if (document.pollForm.labelStartDate.value != "" && document.pollForm.labelEndDate.value != "" && (Date.parse(document.pollForm.labelStartDate.value) > Date.parse(document.pollForm.labelEndDate.value)))
    {
            alert("???????????");
            return;
    }

	document.pollForm.submit();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -