摘要:
一.在ftl中,用${}输出,如果有空值的话会报错:freemarker.core.InvalidReferenceException: Expression notepad.remindTime is undefined on line 29, column 47 in notepad_view.ftl.解决方法1.${notepad.remindTime!'xxx'}// 引号里面的是如果remindTime是空值,输出xxx解决方法2.<#if notepad.remindTime??> ${notepad.remindTime}<#else> x 阅读全文
摘要:
在做页面设计的时候,有时需要在一个页面上引入另一个页面,用jquery比较简单,三两句代码就能实现,看代码:index.html<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF- 阅读全文