×

jsp还有人用吗 js bean

jsp+javabean+servlet的项目有人要吗?谁能告诉我一些有用的网页特效代码啊

admin admin 发表于2022-07-06 14:44:57 浏览123 评论0

抢沙发发表评论

jsp+javabean+servlet的项目有人要吗


想从事软件开发的要学j2ee,其他的在学校都能大概的学到,具体说实话要在自己的工作中具体运用。
JAVA的最简单应用是JSP,可以说学会了JSP你就可以做一些基于B/S(浏览器/服务器)的小“项目”了.
精通J2EE-Eclipse Struts Hibernate Spring 整合应用案例
本书较为全面地介绍J2EE Web应用开发的程序设计技术。书中首先介绍相关的知识点,引导读者进入J2EE Web技术的世界。然后讲解网上购物子系统、公告管理系统、网上书店、BBS系统、信息发布平台、学生课程及成绩管理系统、个性化定制系统、网上文件管理系统等8个实用的系统。书中的实例在最新的Eclipse版本上开发完成,采用了JSP、Servlet、Struts、Hibernate、Spring

谁能告诉我一些有用的网页特效代码啊


《!--STATUS OK--》
《!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN“》
《html》
《head》
《meta http-equiv=“Content-Type“ content=“text/html; charset=gb2312“》
《link rel=“alternate“ type=“application/rss+xml“ title=““谁能告诉我一些有用的网页特效代码啊?”的最新回答(RSS 2.0)“ href=“http://zhidao.baidu.com/q?ct=20&qid=2601349&pn=65535&rn=25&tn=rssqb“》
《title》谁能告诉我一些有用的网页特效代码啊?_百度知道 《/title》
《style type=“text/css“》
《!--
a.f12og:link{color:#ff6600}
a.f12og:visited{color:#ff6600}
--》
《/style》
《link href=“/iknow.css“ rel=“stylesheet“ type=“text/css“》
《script language=“JavaScript“ type=“text/JavaScript“》
function ask(fn)
{document.fask.word.value=fn.word.value;
fask.submit();
}
《/script》
《/head》
《body class=“bgbdy“ topmargin=“0“》
《center》
《table width=“770“ border=0 align=“center“》
《tbody》
《tr》
《td width=“150“ valign=top》《a href=“/“》《img src=“https://gss0.bdstatic.com/70cFsjip0QIZ8tyhnq/img/logo-zhidao.gif“ border=“0“》《/a》《/td》
《td height=“55“ style=“table-layout: fixed; word-break: break-all“》《table cellspacing=0 cellpadding=0 border=0》
《tr》
《td nowrap class=“tab“》《a href=“http://news.baidu.com“ class=“headTit“》新闻《/a》   《a href=“http://www.baidu.com/“ class=“headTit“》网页《/a》   《a class=“headTit“ href=“http://post.baidu.com/“》贴吧《/a》   《font class=“headTitB“》知道《/font》   《a class=“headTit“ href=“http://mp3.baidu.com/“》MP3《/a》   《a class=“headTit“ href=“http://image.baidu.com/“》图片《/a》《/td》
《/tr》
《/table》
《table border=“0“ cellspacing=“0“ cellpadding=“0“》
《tr》
《form action=“/q“ name=“ftop“ method=“get“》
《td nowrap》
《input class=formfont maxlength=256 tabindex=1 size=42 name=word》
《/td》
《td width=“30“ valign=“bottom“ nowrap》《div align=“right“》《span style=“padding-bottom:15px; “》《a href=“http://www.baidu.com/search/zhidao_help.html“》帮助《/a》《/span》《/div》《/td》
《/tr》
《/table》
《table cellspacing=0 cellpadding=0 border=0》
《tr valign=“bottom“》
《td height=“28“ nowrap 》 《input type=“submit“ tabindex=2 value=“搜索答案“ class=“bnsrh“》
《/td》
《td width=“86“ nowrap 》《div align=“right“》
《input type=“hidden“ name=“ct“ value=“17“》
《input type=“hidden“ name=“pn“ value=“0“》
《input type=“hidden“ name=“tn“ value=“ikaslist“》
《input type=“hidden“ name=“rn“ value=“10“》
《input type=“button“ onclick=“ask(ftop);“ tabindex=3 value=“我要提问“ class=“bnsrh“》
《/div》《/td》 《/form》
《/tr》
《/table》
《form name=“fask“ action=“/q“ method=“get“》 《input type=“hidden“ name=“ct“ value=“17“》《input type=“hidden“ name=“pn“ value=“0“》《input type=“hidden“ name=“tn“ value=“ikask“》《input type=“hidden“ name=“rn“ value=“10“》《input type=“hidden“ name=“word“ value=““》 《input type=“hidden“ name=“cm“ value=“1“》《input type=“hidden“ name=“lm“ value=“394496“》《/form》
《/td》《/tr》
《/table》
《script》
var url = escape(location.href);

function ctlSubmit(event) {
if (event.ctrlKey && event.keyCode == 13) { fdf.submit() }
}
function checkco(f,des)
{ if(f.co.value==““) {alert(“请输入您的“+des); return false;}}
function limitpl(f,des)
{ if(f.co.value==““) {alert(“请输入您的“+des); return false;} return limitChars(f.co,des,200);}
function checkcoAndsn(f,des)
{ if(f.co.value==““) {alert(“请输入您的“+des); return false;} return limitChars(f.sn,“参考资料“,60);

js中的prototype有什么作用


prototype对象是实现面向对象的一个重要机制。每个函数也是一个对象,它们对应的类就是function,每个函数对象都具有一个子对象prototype。

Prototype 表示了该函数的原型,prototype表示了一个类的属性的集合。当通过new来生成一个类的对象时,prototype对象的属性就会成为实例化对象的属性。

下面以一个例子来介绍prototype的应用,如图:

扩展资料

prototype给String类封装一个“日期验证”的代码

String.prototype.isDate = function(){

var regex = new RegExp(“^[\d]([-|/])[\d]{1,2}([-|/])[\d]{1,2}$“);

console.log(this);

return regex.exec(this);

}

var strValue = “12512412“;

alert(strValue.isDate());

参考资料:百度百科 prototype