- 浏览: 300360 次
- 性别:
- 来自: 成都
最新评论
-
Znker:
把classpath错写成classpaht结果卡了半天
org.hibernate.hql.ast.QuerySyntaxException: XX is not mapped [from XX] -
tangjizhong:
[color=orange][/color]212313
图解SSH框架配置步骤 -
GreatCoder:
有一种情况:如果你使用注解配置成 @Entity(name=& ...
org.hibernate.hql.ast.QuerySyntaxException: XX is not mapped [from XX] -
itabclichao:
谢谢分享
org.hibernate.hql.ast.QuerySyntaxException: XX is not mapped [from XX] -
alan0509:
不知道信中 这位兄弟 最后怎样了?
我不想一辈子和代码打交道
文章列表
从数据库提取数据绑定到下拉列表,并设置默认选中项
//初始化届次下拉列表
$.ajax({
type:"POST",
url:"getAllSessions.action",
dataType:"json",
success:function(json)
{
json=json.list;
for(var i=0;i<json.length;i++)
{
//加载下拉列表
$("#sessions") ...
非原创,转载自脚本之家
//获取字符串字节数
function getBytesCount(str)
{
if (str == null)
{
return 0;
}
else
{
return (str.length + str.replace(/[\u0000-\u00ff]/g," ").length);
}
}
jquery发送ajax请求
$.ajax({
type:"POST",
url:"getPsNewConsultList.action",
error : function(textStatus, errorThrown) {
//失败
$.messager.alert('错误', "系统ajax交互错误: " + textStatus, 'error');
},
success:function(){
//成功
}
jquery的json函数
//加载新 ...
加载相关js和css,因为easyui依赖jquery,所有加载easyui前要先加载jquery,否则为提示找不到datagrid
<!-- 加载jquery -->
<script type="text/javascript" src="plugins/jquery/jquery-1.4.2.min.js"></script>
<!-- 加载jquery-easyui -->
<link rel="stylesheet" type="te ...