- 浏览: 108737 次
- 性别:
- 来自: 青岛
最新评论
-
everlxq:
...
window 、dom
文章列表
请求 在bd配置文件里找方法名为downloadFj类名为downloadFjAction的Action
<a href="<%=request.getContextPath() %>/bd/downloadFjAction!downloadFj.action?id=<s:property value='id'/>" title="点击下载"><s:property value="wjmc"/></a>
使用action标签,可以允许在jsp页面中直接调用Action ...
<div class="jdwxnrleft">
<STYLE type=text/css>#countdown {
PADDING-RIGHT: 10px; BACKGROUND-POSITION: 50% bottom; FONT-WEIGHT: bold; FONT-SIZE: 16px; FLOAT: right; BACKGROUND-
IMAGE: url(ayimages/bg_box.gif); MARGIN-BOTTOM: 1px; OVERFLOW: hidden; WIDTH: 340px; COLOR: # ...
absolute
生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。
元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。
fixed
生成绝对定位的元素,相对于浏览器窗口进行定位。
元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。
relative
生成相对定位的元素,相对于其正常位置进行定位。
因此,&qu ...
onkeypress 这个事件在用户按下并放开任何字母数字键时发生。系统按钮(例如,箭头键和功能键)无法得到识别。
onkeyup 这个事件在用户放开任何先前按下的键盘键时发生。
onkeydown 这个事件在用户按下任何键盘键(包括系统按钮,如箭头键和功能键)时发生。
小demo:只在在输入的时候可以用backspace,其他地方不可以用。
<script type="text/javascript">
//处理键盘事件
function doKey(e){
var ev = e || window.eve ...
<html>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<head>
<script>
function tijiao1(action,a){
if(action=="button") ...
public static void upload(String strPath, ServletConfig config,
HttpServletRequest request, HttpServletResponse response) {
File dir = new File(strPath);
String w = JdjWsxydUpload.getFilesRecursive(dir);
if (w.equals("ligang")) {
} else {
strPath += "/" + w; ...
getServlet().getServletContext().getRealPath("/");与request.getRealPath("");
request.getRealPath("");不推荐使用警告。
getServlet().getServletContext().getRealPath("/");可以取代上者,都是取得应用绝对路径。
1.关于request.getRealPath的出错
问题:
String filename = request.getRealPath ...
方法一:在初始化时保存ApplicationContext对象
代码:
ApplicationContext ac = new FileSystemXmlApplicationContext("applicationContext.xml");
ac.getBean("beanId");
说明:这种方式适用于采用Spring框架的独立应用程序,需要程序通过配置 ...
今天我们学习的是ServletContext的应用。
WEB容器在启动时,它会为每个WEB应用程序都创建一个对应的ServletContext对象,它代表当前web应用。
ServletConfig对象中维护了ServletContext对象的引用,开发人员在编写servlet时,可以通过ServletConfig.getServletContext方法获得ServletContext对象。
由于一个WEB应用中的所有Servlet共享同一个ServletContext对象,因此Servlet对象之间可以通过ServletContext对象来实现通讯。S ...
<%@ taglib uri="/WEB-INF/FCKeditor.tld" prefix="FCK" %>
<td class="TableData" colspan="6" >
<FCK:editor id="content" width="100%" height="320"
fontNames="宋体;黑体;隶书;楷体_GB ...
<s:action name="JdjWsxyd_findType" namespace="/"></s:action>
<table style="BORDER-COLLAPSE: collapse"
cellSpacing="0" cellPadding="5" width="920" border="0" align="center" ...
问题描述:
用svn在项目文件夹下commit或者update时会出现错误提示“working copy locked”
解决:
1、在项目文件夹下,单机鼠标右键,选择tortoisesvn-》cleanup;
2、如果cleanup没有效果的话只好手动删除锁定文件。
cd 到svn项目目录下,然后执行如下命令
del lock /q/s
E:\项目\卫生局\监督局\cmsframe
c:\Users\ever>e:
E:/>cd e:\项目\卫生局\监督局\ ...
[size=large]1 if($("input[name=item][value='val']").attr('checked')==true) //判断是否已经打勾
name即控件name属性,value即控件value属性
可以不指定属性值,因一组checkbox的value值都会保存其在数据库中对应的id,最好写成如下方式
if($("input[name=row_checkbox]").attr('checked')==true)
{
alert("j");
}
else
{
alert("请选择 ...
1:取输入框==里的值
var strr=$("#checked").val();
2:取dom对象的属性 直接dom对象+“.”后面跟属性
dom.attr("attribute") 有时不太好使
checkbox[j].value
checkbox[j].checked
3:修改数据时,对于多选框的值得回显 在action中获得多选框对应的字段的值,拼成字符串 传到页面
<body onload="showH()">
..
<s:checkboxlist name=" ...
<tr><th>选择角色</th><td>
<s:checkboxlist list="#request.roleuserList" listKey="roleId" listValue="roleName" value="#request.rolelist.{roleId}" name="roleIds"></s:checkboxlist>
</td>< ...