博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每日记载内容总结3
阅读量:4982 次
发布时间:2019-06-12

本文共 1123 字,大约阅读时间需要 3 分钟。

1.java代码中的匹配

manufName.matches("\\d+")或者checkNumChar.test(sellerStockNo)

2.js里面style的写法

document.getElementById("tt").style.backgroundColor='red'  省略-变为大写

 3.在jsp页面里面select中显示年份

 4.servlet在web.xml里面配置主页面

tomcat6  welcome-file 里面不能配置servlet  要想进页面跳转指定的servlet可以如下进行:

在web.xml里面配置

welcome.jsp
InitIndexServlet

在jsp页面建立welcome.jsp 内容如下:
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
response.sendRedirect(request.getContextPath()+"/InitIndexServlet");
%>
即可跳转指定的servlet进入主页面
tomcat7可以配置主页面

5.用jquery判断checkbox是否被选中 var hello=$("#toinquiry").is(":checked");

6.在form中根据条件判断是否跳转

 

function Y(){    alert("hello");    return true ;}function X(){    alert("world");    return true ;}

自己写X()、Y()函数,我们会发现,这几个函数的执行顺序

1) onclick: Y();
2) onsubmit: X();
3) submit();
也就是说
只要 onclick 未 return false 那么就继续执行 onsubmit
只要 onsubmit 未return false 那么表单就被提交出去了
另外一点写法上注意一定要 “return X();” 才能取得函数的返回值,否则只是调用函数,返回值未被传递

 故以上实例的结果为:屏幕alert  出来 hello  world  然后跳转页面

转载于:https://www.cnblogs.com/cuiyf/archive/2013/02/19/2917375.html

你可能感兴趣的文章