摘要:
http://www.jiathis.com/ 阅读全文
摘要:
1.[代码][HTML]代码跳至[1][全屏预览]?1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666... 阅读全文
摘要:
js代码如下:Date.prototype.format = function(format) { /* * format="yyyy-MM-dd hh:mm:ss"; */ var o = { "M+" : this.getMonth() + 1, "d+" : this.getDate(... 阅读全文
摘要:
This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'的意思是,这版本的 MySQL 不支持使用 LIMIT 子句的 IN/ALL/ANY/SOME 子查询,即是支持非 IN/ALL/ANY/SOME ... 阅读全文
摘要:
Java代码()${reallyChooseSubject.name}"id="subjectId"value="${reallyChooseSubject.id}">"value="A"/>A.${reallyChooseSubject.answer_A}"value="B"/>B.${reall... 阅读全文
摘要:
函数fn:contains(string, substring) 如果参数string中包含参数substring,返回truefn:contains 判断字符串是否包含另外一个字符串 fn:containsIgnoreCase(string, substring) 如果参数string中包含参数s... 阅读全文
摘要:
select c.custName,sum(l.oddCount*l.oddPrice) from OrdersLine l left join l.orders o left join l.orders.cstCustomer cwhere o.cstCustomer.custNo=c.custN... 阅读全文
摘要:
getElementById getElementsByName getElementsByTagName 大概介绍 getElementById ,getElementsByName ,getElementsByTagName###adv### 后两个是得到集合,byid只是得到单个对象 g... 阅读全文
摘要:
1.MVC :Model-View-Control框架性质的C 层要完成的主要工作:封装web 请求为一个数据对象、调用业务逻辑层来处理数据对象、返回处理数据结果及相应的视图给用户。2. 简要概述springmvcSpring C 层框架的核心是 DispatcherServlet,它的作用是将请求... 阅读全文
摘要:
今天使用SpringMvc,在页面上用JSTL来做标签库进行解析,方法是:在JSP页面上引入在pom.xml中引入JAR包: javax.servlet jstl 1.2 runtime taglibs standard 1.1.2 注意不要引错包,不要写成 ... 阅读全文