123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- function selectall(name) {
- if ($("#check_box").attr("checked")) {
- $("input[name='"+name+"']").each(function() {
- this.checked=true;
- });
- } else {
- $("input[name='"+name+"']").each(function() {
- this.checked=false;
- });
- }
- }
- //TAB切换
- function Tabs(id,title,content,box,on,action){
- if(action){
- $(id+' '+title).click(function(){
- $(this).addClass(on).siblings().removeClass(on);
- $(content+" > "+box).eq($(id+' '+title).index(this)).show().siblings().hide();
- });
- }else{
- $(id+' '+title).mouseover(function(){
- $(this).addClass(on).siblings().removeClass(on);
- $(content+" > "+box).eq($(id+' '+title).index(this)).show().siblings().hide();
- });
- }
- }
- function openwin(id,url,title,width,height,lock,yesdo,topurl){
- art.dialog.open(url, {
- id:id,
- title: title,
- lock: lock,
- width: width,
- height: height,
- cancel: true,
- ok: function(){
- var iframeWin = this.iframe.contentWindow;
- var topWin = art.dialog.top;
- if(yesdo || topurl){
- if(yesdo){
- yesdo.call(this,iframeWin, topWin);
- }else{
- art.dialog.close();
- topWin.location.href=topurl;
- }
- }else{
- var form = iframeWin.document.getElementById('dosubmit');form.click();
- }
- return false;
- }
- });
- }
- function resetVerifyCode(){
- var timenow = new Date().getTime();
- document.getElementById('verifyImage').src='./index.php?g=Home&m=Index&a=verify#'+timenow;
- }
- function showpicbox(url){
- art.dialog({
- padding: 2,
- title: 'Image',
- content: '<img src="'+url+'" />',
- lock: true
- });
- }
|