- 浏览: 17875 次
最新评论
文章列表
CSS:
<style type="text/css">
*{margin:0;padding:0;list-style-type:none;}
a,img{border:0;}
#scrollWrap{width:450px;height:18px;overflow:hidden;}
#scrollMsg li{height:18px;line-height:18px;overflow:hidden;font-size:12px;padding:0 10px;}
</style>
html:
<div id="scrollWra ...
.关键字: 弹出窗口
如何利用网页弹出各种形式的窗口,我想大家大多都是知道些的,但那种多种多样的弹出式窗口是怎么搞出来的,我们今天就来学习一下:
1.弹启一个全屏窗口
<html>
<body onload="window.open('http: ...
def serverimport={
render(view: "server_import")
}
def server_import ={def loginUser = UtilsController.getLoginUser(session)//取得登录人
if(loginUser){
def ufile = FileUploadUtil.upload(request, "batchfile")//上传文件。写好的java类直接引用
def out = 0
def j = 0
def failDevice = ...
def lognUser=UtilsController.getLoginUser(session)//取值页面登录人
def ask=KnowledgeAsk.findById(params.id) //返回所有ID的记录
def findAnswer="%"+params.f1+"%"
like("title",findAnswer)//模糊查询
def findAsk=
{
def lists,total,lists1
def findAnswer="%"+params.f1+&quo ...
用到的插件式 dhtmlx, xml为
<?xml version='1.0' encoding='iso-8859-1'?>
<tree id="0">
<item text="My Computer" id="1" child="1" im0="my_cmp.gif" im1="my_cmp.gif" im2="my_cmp.gif" call="true&quo ...
import java.util.Date;
//知识库类别
class KnowledgeType {
//属性名称
String sortname
//属性描述
String sortdesc
//预留字段
String sortnuber
Date dateCreated
Date lastUpdated
//建立父节点
static belongsTo=[parent:KnowledgeType];
//建立子结点,多个子属性
static hasMany=[childrens:KnowledgeType];
static constraints = {
...
、在命令模式下直接敲mysql可以进入mysql:
[root@localhost ~]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 17
Server version: 5.1.49-community-log MySQL Community Server (GPL)
。。。
2、创建数据库出错:
mysql> create database tmonitor;
ERROR 1044 (42000): Access denied ...
java.lang.UnsupportedClassVersionError: Bad version number in .class file
主要是运行tomcat的jdk版本跟myeclipse版本不同:改一下
1.Window --> Preferences -->Java --> compiler中的compiler compliance level对应的下拉菜单中选择JDK版本( 6.0--1.6).
2.Window --> Preferences -->MyEclipse --> Servers -->Tomcat --> Tom ...