- 浏览: 29124 次
- 性别:
- 来自: 杭州
文章列表
框架页
<html>
<head>
<title>框架页</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<frameset rows="20%,*">
<frame src="sample31_top.htm" name="tip">
<frameset ...
设置新开窗口特征
<html>
<head>
<title>设置新开窗口的特征</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body>
<!--新开一个指定大小的窗口-->
<input type="button" onclick="window.open('sample01.h ...
<html>
<head>
<title>在超链接中使用事件</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<script type="text/javascript" language="javascript">
<!--
//多添加几个换行,让效果明显
for (var i=0;i<100;i++ ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb ...
主要属性:前景色color,背景色background-color
<html>
<head>
<title>css示例-颜色与背景</title>
<style type="text/css">
h1{
color:#FF0066;
background-color:blue;
}
body{
background-image:url();
...
<script>
//按钮在没有选项时变灰
function isCheck()
{
var checks = document.getElementsByName("allcheckbox");
for(var i=0; i<checks.length ; i++)
{
if(checks[i].checked == false)
{
var mod=document.getElementById("modify");
var del=document.getElementById(&quo ...
<html>
<head>
<title>简单计算器</title>
<script>
function doCal(){
var value1=parseInt(document.getElementById("value1").value);
var flag=document.getElementById("value1").value
var valu ...
一、为了提高代码利用率 //参考页面制作完全手册
JavaScript可以将<script language="javascript">... </script>中的代码抽取出来,放到单独的文件夹中,比如放在js包下的扩展名为js的文件中,然后在页面中调用<script language="javascript" src="js/test_js.js"></script>
二、在调试JavaScript的时候,最好把IE浏览器的脚步通知打开工具-->Internet选项- ...
第一步:copy lib文件到web应用程序的web-inf/lib文件夹下面:
dwr-2.0.2.jar
bsf-2.3.jar
bsh-2.0b4.jar
commons-logging-1.0.4.jar
commons-validator-1.1.4.jar
jakarta-oro-2.0.8.jar
log4j-1.2.12.jar
第二步:修改web.xml
<listener>
<listener-class>org.directwebremoting.servlet.DwrListener</listener-class>
</l ...