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

推荐订阅源

L
LangChain Blog
Engineering at Meta
Engineering at Meta
S
Securelist
M
MIT News - Artificial intelligence
GbyAI
GbyAI
O
OpenAI News
W
WeLiveSecurity
T
Troy Hunt's Blog
L
LINUX DO - 最新话题
博客园_首页
C
Check Point Blog
Martin Fowler
Martin Fowler
The Last Watchdog
The Last Watchdog
量子位
Cloudbric
Cloudbric
S
SegmentFault 最新的问题
Recent Commits to openclaw:main
Recent Commits to openclaw:main
SecWiki News
SecWiki News
L
Lohrmann on Cybersecurity
Forbes - Security
Forbes - Security
雷峰网
雷峰网
H
Heimdal Security Blog
P
Palo Alto Networks Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
博客园 - 聂微东
Hacker News: Ask HN
Hacker News: Ask HN
Hacker News - Newest:
Hacker News - Newest: "LLM"
Help Net Security
Help Net Security
U
Unit 42
N
News and Events Feed by Topic
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
Stack Overflow Blog
Stack Overflow Blog
TaoSecurity Blog
TaoSecurity Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
Jina AI
Jina AI
美团技术团队
L
LINUX DO - 热门话题
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Security Latest
Security Latest
S
Secure Thoughts
Microsoft Azure Blog
Microsoft Azure Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
P
Privacy International News Feed
博客园 - 司徒正美

博客园 - Amwpfiqvy

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

渐渐公布一些自写框架(暂命名为Apq,个人认为本框架最大优势是“不强制在内置类型的protorype内添加方法来扩展功能”,因此它支持与任意别的框架随意结合使用)的代码,本框架使用“伪名称空间/伪类”的方式按需获取JS。

由于有注释,所以不打算作太多说明,甚至不加说明。

首先是Apq.aspx
该页面主要功能是作为框架顶层window,但是它是可选的。并不一定需要它。

随后的见:
Config

<!-- Apq$main-->
<!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 title_update()
{
    
try
    
{
        
var main = document.getElementById( "main" );
        
// 这里不能是以下语句
//
        document.title = main.document.title;
        setTimeout( "document.title = main.document.title"0 );
    }
catch(e){}
}


function window_onload()
{
    
// 取消本处理
    window.detachEvent("onload",window_onload);
    
    Apq_Init();
    
    
var main = document.getElementById( "main" );
    main.style.posHeight 
= document.body.offsetHeight - 24;
    main.attachEvent(
"onload",title_update);
    main.attachEvent(
"onresize",main_onresize);
    
    
// 打开起始页面
    main.src = Apq$Config.Home;
}


window.attachEvent(
"onload",window_onload);

function main_onresize()
{
    
var main = document.getElementById( "main" );
    main.style.posHeight 
= document.body.offsetHeight - 24;
}

</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    
<title></title>
</head>
<body style="margin: 0" scroll="no">
    
<form id="form1" runat="server">
        
<iframe id="main" width="100%" frameborder="no"></iframe>
    
</form>
</body>
</html>