预览模式: 普通 | 列表

定义打开网页时起始窗口的大小

<script for="window" event="onload">
window.resizeTo(500,300)
</script>

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 518

屏蔽右键

<a href="http://ywicc.com" onmousedown="if(event.button==2)alert('禁止')">ywicc.com</a>

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 540

如何让iframe根据内容适应高度

<iframe src="http://www.baidu.com" onload="this.height = this.document.body.offsetHeight;this.width=this.document.body.offsetWidth;"></iframe>

查看更多...

分类:Html | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 589

文字做按扭提交表单

<form name="form1">
<a href="###" onclick="form1.submit()">提交</a>
</form> 

查看更多...

分类:Html | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 585
<form method=post action="" name="form1">
<input type="button" name="button1" value="51js.com">
</form>
<script language="JavaScript">
<!--
form1.button1.disabled=true;
//-->

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 652

引入样式表(css)的四种方式

一、使用STYLE属性: 将STYLE属性直接加在个别的元件标签里。 
<元件(标签) STYLE="性质(属性)1: 设定值1; 性质(属性)2: 设定值2; ...}
例如: 
<TD STYLE="COLOR:BLUE; font-size:9pt; font-family:"标楷体"; line-height:150%>
这种用法的优点 是可灵巧应用样式於各标签中,但是缺点则是没有整篇文件的『统一性』。

二、使用STYLE标签: 将样式规则写在<STYLE>...</STYLE>标签之中。 

查看更多...

分类:Css | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 570

FLASH的loading

HTML代码


[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 1755

不错的表格效果,表中表

<html>
<head>
</head>
<body>
<table width="200"" cellspacing="0" cellpadding="0">
<tr> 
<td>

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 564

FF下如何使连续长字段自动换行

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">
<!-- 
div {
    width:300px;
    word-wrap:break-word;

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 588

accesskey 提交

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form action="http://www.jluvip.com/index.html" method=POST name=form1>

查看更多...

分类:Js | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 557