my.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. function selectall(name) {
  2. if ($("#check_box").attr("checked")) {
  3. $("input[name='"+name+"']").each(function() {
  4. this.checked=true;
  5. });
  6. } else {
  7. $("input[name='"+name+"']").each(function() {
  8. this.checked=false;
  9. });
  10. }
  11. }
  12. //TAB切换
  13. function Tabs(id,title,content,box,on,action){
  14. if(action){
  15. $(id+' '+title).click(function(){
  16. $(this).addClass(on).siblings().removeClass(on);
  17. $(content+" > "+box).eq($(id+' '+title).index(this)).show().siblings().hide();
  18. });
  19. }else{
  20. $(id+' '+title).mouseover(function(){
  21. $(this).addClass(on).siblings().removeClass(on);
  22. $(content+" > "+box).eq($(id+' '+title).index(this)).show().siblings().hide();
  23. });
  24. }
  25. }
  26. function openwin(id,url,title,width,height,lock,yesdo,topurl){
  27. art.dialog.open(url, {
  28. id:id,
  29. title: title,
  30. lock: lock,
  31. width: width,
  32. height: height,
  33. cancel: true,
  34. ok: function(){
  35. var iframeWin = this.iframe.contentWindow;
  36. var topWin = art.dialog.top;
  37. if(yesdo || topurl){
  38. if(yesdo){
  39. yesdo.call(this,iframeWin, topWin);
  40. }else{
  41. art.dialog.close();
  42. topWin.location.href=topurl;
  43. }
  44. }else{
  45. var form = iframeWin.document.getElementById('dosubmit');form.click();
  46. }
  47. return false;
  48. }
  49. });
  50. }
  51. function resetVerifyCode(){
  52. var timenow = new Date().getTime();
  53. document.getElementById('verifyImage').src='./index.php?g=Home&m=Index&a=verify#'+timenow;
  54. }
  55. function showpicbox(url){
  56. art.dialog({
  57. padding: 2,
  58. title: 'Image',
  59. content: '<img src="'+url+'" />',
  60. lock: true
  61. });
  62. }