随笔分类 - JavaScript
摘要:本节介绍jqGrid其他的使用方法,主要是一些基本操作,特殊的数据显示等。1 刷新jqGrid数据。常用到刷新jqGrid数据的情况是,在用到查询的时候,根据查询条件,请求数据,并刷新jqGrid表格,使用方式如下:$("#search_btn").click(function(){ //此处可以添加对查询数据的合法验证 var orderId = $("#orderId").val(); $("#list4").jqGrid('setGridParam',{ datatype:'json', post
阅读全文
摘要:jqGrid 是一个用来显示网格数据的jQuery插件,通过使用jqGrid可以轻松实现前端页面与后台数据的ajax异步通信。文档比较全面,其官方网址为:http://www.trirand.com。一、jqGrid特性:基于jquery UI主题,开发者可以根据客户要求更换不同的主题。兼容目前所有流行的web浏览器。Ajax分页,可以控制每页显示的记录数。支持XML,JSON,数组形式的数据源。提供丰富的选项配置及方法事件接口。支持表格排序,支持拖动列、隐藏列。支持滚动加载数据。支持实时编辑保存数据内容。支持子表格及树形表格。支持多语言。最关键目前是免费的。二、jqGrid使用方式:1.下载
阅读全文
摘要:源文件地址:http://download.csdn.net/source/3536967<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> <title>jQuery UI Example Page</title> <link type="text/css" href="css/ui-lightness/jquery-ui-1.8.16.custo
阅读全文
摘要:在配置了Hibernate的延迟加载后,发现没有生效,原因是应为使用的json解决办法是,在struts 的配置文件当中加入一下代码<action name="listRole" class="roleAction" method="findAllRole"><result type="json"><param name="includeProperties">roles/[/d+/]/.roleId,roles/[/d+/]/.roleName,roles/
阅读全文
摘要:$("input[type='checkbox'][name='resId']:checked").each(function(){ alert($(this).val()); });$("input[type='checkbox'][name='resId']:checked").each(function(){ resIds = resIds + $(this).val() + ","; });type 为checkbox name 为resId 状态为 选中的复选框
阅读全文
摘要:$("#test").attr("href","a.jsp");
阅读全文
摘要:$('input[name="roleStatus"]').val([$('#roleStatus_' + id).text()]);roleStatus为radio的name$('#roleStatus_' + id).text()为要选择的radio的值更多:http://lichuhui.javaeye.com/blog/271574$("#roleStatus1").attr("checked",true);选中指定ID的radio$("input[name=roleS
阅读全文
摘要:$("input:checked").each(function(i){ alert($(this).val()); });
阅读全文
摘要:jFeed 是一个通用的 RSS/ATOM 解析器jQuery插件jFeed 支持 RSS 0.91, 0.92, 1.0, 2.0 和 Atom 1.0 等格式。使用方法:jQuery.getFeed(options); 参数: * url: the feed URL (required). * data: data to be sent to the server. See jQuery.ajax data property. * success: a function to be called if the request succeeds. The function gets pass
阅读全文
摘要:当父窗口的iframe的高度为100%时alert(parent.document.getElementById("contentFrame").height);得到的为100%,其中contentFrame为iframe的IDalert(document.documentElement.scrollHeight);得到的为具体的高度
阅读全文
摘要:<mce:script type="text/javascript"><!-- function dw(pd_dw,pd_year){ document.editzw.file_title.value="${gwzf.file_title}"; document.editzw.file_wh_number.value="${gwzf.file_wh_number}"; document.editzw.file_date.value="${gwzf.file_date}"; document.edi
阅读全文