<!--
path:/WEB-INF/jsp/llistemplate/editLlistTemplate.jsp
-->
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="newstag" uri="http://www.sobey.com/news/taglib/news"%>
<%@ include file="/common/taglibs.jsp"%>
<link href="<c:url value='/themes/${userPageConfig.themename}/styles/style.css' />" rel="stylesheet" type="text/css" media="screen" />
<link href="<c:url value='/themes/${userPageConfig.themename}/styles/style.css' />" rel="stylesheet" type="text/css" media="print" />
<script type="text/javascript" src="<c:url value="/widgets/ext/ext-all.js"/>"></script>
<script type="text/javascript" src="<c:url value="/widgets/ext/examples.js"/>"></script>
<script type="text/javascript" src="<c:url value="/widgets/ext/source/locale/${userPageConfig.language}/ext-lang.js"/>"></script>
<%@ include file="/widgets/tree/treeV3.jsp"%>
<%@ include file="/widgets/listmember/memberList.jsp"%>
<%@ include file="/common/fileUpDown.jsp"%>
<link href="<%=request.getContextPath()%>/widgets/tree/list/list.css" rel="stylesheet" type="text/css" />
<script src="<%=request.getContextPath()%>/widgets/tree/list/list.js"></script>
<script type="text/javascript" src='<c:url value="/scripts/commonInAllPage.js"/>'></script>
<%@ include file="/common/columndiv_noconfig.jsp"%>
<script type="text/javascript">
var rootPath="<%=request.getContextPath()%>";
</script>
<script src="<%=request.getContextPath()%>/widgets/treeclassify/jquery.js"></script>
<link href="<c:url value='/css/button/button.css' />" rel="stylesheet" type="text/css" />
<style type="text/css">
#mytable {
width: 100%;
padding: 0;
margin: 0;
}
th {
font: bold 11px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
color: #4f6b72;
border-right: 1px solid #C1DAD7;
border-bottom: 1px solid #C1DAD7;
border-top: 1px solid #C1DAD7;
letter-spacing: 2px;
text-transform: uppercase;
text-align: left;
padding: 6px 6px 6px 12px;
background: #CAE8EA no-repeat;
}
td {
border-right: 1px solid #C1DAD7;
border-bottom: 1px solid #C1DAD7;
background: #fff;
font-size:11px;
padding: 6px 6px 6px 12px;
color: #4f6b72;
}
</style>
<script type="text/javascript">
var doctaskid=0;
var x = 0;
function submitMethod(doctaskid){
Ext.MessageBox.confirm('',"<h3>确定提交此任务吗?</h3>",
function(btn){
if(btn=="yes"){
Ext.Ajax.request({
method:"POST",
encoding:"UTF-8",
url:rootPath + "/project/pretask2Submit.do?iscommand=true&project.id="+doctaskid,
success:function(response,options){
var json = Ext.util.JSON.decode(response.responseText);
Ext.alert.msg('',json.returnMessage);
if(json.message=="成功提交任务!"){
//alert("ext " +doctaskid);
// var urlPath = rootPath + "/project/pretask2Submit.do?iscommand=true&project.id="+doctaskid;
//LayoutA.showContent2NewPanel('',urlPath, true,41, null);
}
},
failure:function(result,request){
Ext.alert.msg('', "任务提交失败",'error');
}
});
}
});
}
function pre2submit(){
$('#mytable tr').each(function(i,d){
var $tr = $(d);
var $td = $tr.children(':first-child');
var $input = $td.children('input');
alert($input.attr('checked') && x==0);
if($input.attr('checked')==null && x==0){
Ext.alert.msg('tip',"请选择一条数据",'warn');
return;
}
if ($input.attr('checked')) {
/*alert($tr.find(".displayname").text());
alert($tr.find(".uncpath").text());
alert($tr.find(".id").val());
alert($tr.find(".clipguid").val());
alert($tr.find(".resourcetype").val());
alert($tr.find(".parentid").val());*/
var doctaskid = $tr.find(".doctaskid").val();
x=1;
submitMethod(doctaskid);
}
});
}
</script>
<body>
<form action="/pretask2Submit.do" name="" id="">
<table border="0" width="80%" height="200px;" bgcolor="white" align="center" id="mytable">
<tr style="border: 1;font-weight: bold;" >
<th width="33%">选择</th>
<th width="33%">displayname</th>
<th width="33%">uncpath</th>
</tr>
<c:forEach var="t" items="${cmsListData}">
<tr>
<td width="33%">
<input type="radio" name="radio"/>
</td>
<td width="33%" class="displayname">${t.displayname }</td>
<td width="33%" class="uncpath">${t.uncpath }</td>
<input type="hidden" value="${t.id }" class="id"/>
<input type="hidden" value="${t.clipguid }" class="clipguid"/>
<input type="hidden" value="${t.parentid }" class="parentid"/>
<input type="hidden" value="${t.resourcetype }" class="resourcetype"/>
<input type="hidden" value="${t.doctaskid }" class="doctaskid"/>
</tr>
</c:forEach>
<tr class="ss">
<td colspan="8">
<input type="button" value="提交任务" onclick="javascript:pre2submit();">
</td>
</tr>
</table>
</form>
</body>
分享到:
相关推荐
在`jQuery`中,`each()`有两种主要的使用场景,一种是针对数组或对象,另一种是针对`jQuery`对象。 首先,当`each()`用于遍历数组时,它会按顺序对数组中的每个元素调用提供的函数`fn`。如果`fn`在执行过程中返回`...
本篇文章将深入探讨如何使用jQuery的$.each函数来获取并处理JSON数据。 首先,我们需要了解JSON(JavaScript Object Notation),这是一种轻量级的数据交换格式,易于人阅读和编写,同时也易于机器解析和生成。JSON...
《jQuery each函数源码分析》 jQuery库中的`each`函数是其核心功能之一,它提供了遍历数组和对象的能力,使得开发者能够方便地对集合中的每个元素进行操作。在这个文档中,我们将深入探讨`each`函数的源码,了解其...
jQuery.each-v1.10.2源码
jquery 城市选择控件 文本框获得焦点,在下方弹出悬浮层,分组选择城市。 解决了 http://bbs.csdn.net/topics/390339668#new_post 问题
`jQuery.each`是jQuery库中的一个核心方法,用于遍历对象和数组。它是一个非常灵活且功能强大的工具,尤其在处理数据迭代时非常有用。这个方法有两个主要的参数:`object`,即需要遍历的对象或数组,以及`callback`...
本篇文章将详细探讨jQuery的几种使用方法,帮助你更好地理解和运用这一强大的工具来提升网页设计的效率和用户体验。 1. **DOM操作**:jQuery的核心功能之一就是对HTML文档对象模型(DOM)进行操作。通过选择器,如`...
jquery each使用 </title> [removed][removed] [removed] $(document).ready(function(){ //进行遍历一维数组 var arr1 = [ “aaa”, “bbb”, “ccc” ]; //同c语言不同时变量值使用[] 而不是{} $.each(arr1...
### jQuery-each用法全面总结 #### 一、概述 `jQuery.each` 是一个非常实用且灵活的方法,用于遍历JavaScript中的对象、数组以及其他可枚举的数据结构。它支持多种用法,包括带有附加参数的遍历以及不带附加参数的...
$.each()遍历数组或对象的具体用法
资源名称:jquery的each()详细介绍 中文WORD版内容简介:本文档主要讲述的是jquery的each()详细介绍;each()方法能使DOM循环结构简洁,不容易出错。each()函数封装了十分强大的遍历功能,使用也很方便,它可以遍历一...
jQuery的`each()`函数是其核心功能之一,它提供了对数组、对象以及DOM元素进行迭代操作的能力,大大简化了JavaScript中的循环处理。下面我们将详细探讨`each()`的各种用法和应用场景。 首先,`each()`在处理一维...
JQuery中提供了一个非常实用的方法each(),该方法可用于遍历数组或对象的每一个元素,并且该方法支持嵌套使用,使得在操作DOM元素时变得更加灵活和方便。 JQuery each()方法主要有两种形式:遍历数组和遍历对象。当...
有些朋友可能会以为在jquery跳出循环可以直接使用continue和break了,但是使用之后没有效果,因为在jquery中没有这两条命令。 后来上网查了下,得到了结果: return false;——跳出所有循环;相当于 javascript 中的...
在jQuery源码中,`each()`方法实现了迭代逻辑,它使用`Array.prototype.forEach`(如果浏览器支持)或传统的for循环来遍历元素。同时,`each()`还确保了回调函数能够访问到jQuery对象和上下文。 ```javascript each...
以下是一些`jQuery.each`方法的使用示例: ```javascript // 遍历DOM元素集合 $('div').each(function(index, element) { console.log('这是第' + index + '个div元素:', element); }); // 遍历对象属性 var obj ...
### JQUERY精选使用方法 #### 一、页面元素的引用 在使用jQuery的过程中,通过`$()`函数选择页面中的元素是十分基础的操作。这个选择器支持多种方式来定位DOM元素,比如通过ID、类名、元素名称甚至是复杂的DOM或...
接下来我们将详细探讨如何使用jQuery的`each()`函数进行遍历和数组处理。 首先,`each()`函数的基本语法是: ```javascript $.each(object, function(index, value){ // 在这里编写循环体的代码 }); ``` 1. **...