- 注册时间
- 2012-9-10
- 最后登录
- 2014-1-3
- 阅读权限
- 10
- 积分
- 800
- 精华
- 0
- 帖子
- 228
|
factory 发表于 2012-11-29 16:50
你这个控件是放在那里的啊?
你放个干净,单独的HTML页面,只放这2段代码,再试试debuuger看下呢
我测试了 ...
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ include file="/miniui-config/miniuibase.jsp"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'test.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<script type="text/javascript">
var indexDate;
$(document).ready(function(){
indexDate = mini.get("indexDate");
indexDate.select(0);
});
</script>
</head>
<body>
<input class="mini-combobox" id="indexDate" style="width: 150px;"
textField="text" valueField="text"
url="Index/getDateByBankFinance.do" required="true" />
</body>
</html>
|
|