`
yjgyjg4
  • 浏览: 118120 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
<script language="JavaScript"> //定义一个tick函数,以获取系统的时间 function tick() { var year,month,day,hours,minutes,seconds,ap; var intYear,intMonth,intDay,intHours,intMinutes,intSeconds; var today; today=new Date(); intYear=today.getYear(); intMonth=today.getMonth()+1; intDay=today.get ...
当从Action中返回到页面上的是xml文件时,需要我们对xml文件进行操作: 假如xml是: <root> <cunFleet> <cunFleetID>2</cunFleetID> <cunfleetName>elite002</cunfleetName> </cunFleet> </root> 页面中获得此xml后的操作: function toXML(strxml){ try{ xmlDoc = new ActiveXObject(" ...
从获取的资料中发现有两种方式开发一个自己的portlet。目前,我们搭建了ext的开发环境,所以现在用的是ext的开发方式,对于另外一种开发方式未做实验。 下面是一个小例子: 我们新建的portlet都在ext这个目录下 其中ext-impl\src,ext-service\src是portal工程已经实现的所有portlet的java代码和部分资源文件. ext-web目录是放置网页文件和portal的配置文件。 采用portal里面代码规范生成机制,对于持久化层和服务层的类都可以自动产生,方便,而且规范,这个应该可以提高开发效率。 在数据库里面新建一个表users,字段id,userNam ...
birt的下载和安装: http://www.eclipse.org/downloads/download.php?file=/birt/downloads/drops/R-R1-2_3_0-200806191030/birt-report-designer-all-in-one-2_3_0.zip 上面的地址是 ,eclipse集成了birt报表功能,所以下载后可以直接使用,在eclipse中建立birt报表文件.rptdesign,就不细说了。 birt-runtime: 下载 http://www.eclipse.org/downloads/download.php?file=/birt ...
jQuery.ajax( {url: '<%= themeDisplay.getPathMain() %>/trk', data: { ID: Id }, success: displaySelect } ); url:指定liferay中路径 data:是需要传递到action中的值 success:displaySelect 这个指定回调函数,即你自己写的js函数。 当然自己的Action类需要继承AjaxAction才可以使用。 Action中取值使用: String ID = ParamUtil.getString(request, "ID") ...
public class RTFCreate { public static void main(String[] args) throws MalformedURLException, IOException { RTFCreate rtfCreate = new RTFCreate(); try { String bodyText="abc"; //byte[] b= null; //rtfCreate.createRTF(bodyText,"WebRoot/images/yjg.png"); // rtf ...
有初始值的 form 表单在点击默认的 Reset 按钮时,表单元素并不能清空,而是恢复初始值,相信这并不是我们期望的,本文介绍的是用 javascript 解决这一问题的方法 <form name="testForm"> <input type="button" value="Javascript Clear" onclick="clearForm('testForm')" /> </form> function clearForm(formName) { ...
<html> <body> <script type="text/javascript" language="Javascript1.1"> <!-- function moveValueToLeft(oData,oPurpose,oFleet){ var arrSelValue = new Array(); var arrSelText = new Array(); var arrValueTextRelation = new Array(); var index = 0; ...
function btnAdd_onclick()" { var opt=new Option('New York','1'); document.fm.citys.options[0]=opt; } <form id="fm" name="fm"> ... <select name="citys" id="citys"> 删除select中的某一项option:        document.getElementById(&qu ...
Global site tag (gtag.js) - Google Analytics