惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
博客园_首页
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
月光博客
月光博客
云风的 BLOG
云风的 BLOG
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
C
Check Point Blog
V
V2EX
T
Tailwind CSS Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog

博客园 - Amwpfiqvy

如何查看执行计划 SQL Server 堆表与栈表的对比(大表) SQL Server中CURD语句的锁流程分析 树表分级统计 SQL:查询购买了所有指定商品的人 在SQL Server中使用正则表达式 查看SQL Server性能时常用的性能计数器 SQL Server中行列转换 Pivot UnPivot Apq本地工具集 Apq.aspx 第一个:_Config.js JScript.Encode.js - Amwpfiqvy - 博客园 Apq.Threading.js - Amwpfiqvy - 博客园 Script/_Config.js Apq.Text.js Apq.js - Amwpfiqvy - 博客园 prototype.js 查看数据库所有用户表及其列信息 利用JScript的Literal Syntax特性用字符串表示对象
Apq.aspx - Amwpfiqvy - 博客园
Amwpfiqvy · 2006-06-14 · via 博客园 - Amwpfiqvy

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script type="text/jscript">
window.Apq$main = true; // 申明为主框架页
</script>

<script src="Script/_Config.js" type="text/jscript"></script>

<script type="text/jscript">
/// 更新标题
function main_onreadystatechange()
{
 var main = document.getElementById( "main" );
 if( main.readyState == "complete" )
 {
  // 这里不能是以下语句
//  document.title = main.document.title;
  setTimeout( "document.title = main.document.title", 0 );
 }
}

function document_onreadystatechange()
{
 if( document.readyState == "complete" )
 {
  // 取消该事件
  document.onreadystatechange = function(){};
  
  Apq_Init();
  
  // 这里不能使用 inline 的方式定义
  var main = document.getElementById( "main" );
  main.onreadystatechange = main_onreadystatechange;
  
  // 打开起始页面
  main.src = Apq$Config.Home;
 }
}

document.onreadystatechange = document_onreadystatechange;
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<frameset>
 <frame id="main" frameborder="no" height="100%" width="100%" />
</frameset>
</html>