码迷,mamicode.com
首页 > Web开发 > 详细

jquery中lhgdialog插件(一)

时间:2014-11-26 01:05:50      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   使用   sp   

        一:前言

     最近在使用jquery的控件,其实以前也写但是突然之间遇到了需要从弹出窗口传值到父窗口,突然觉得这种传值的方式其实也是需要javascript的基础的,但是我自己还没有去真正的做过,所以还是先记载下吧。

  二:内容  

    先说说有关lhgdialog.js和lhgcore.lhgdialog.min.js、lhgdialog.min.js

    lhgdialog.min.js:是lhgdialog.js的压缩版,所谓压缩版就是将javascript的代码进行去空格、换行、去注解、简化不对外开放的变量名称等等手段达到不修改原代码的功能而减少文件的大小。所以在调试阶段使用压缩版,而在正式版部署时使用压缩版。

    lhgcore.lhgdialog.min.js:在导入js时需要先导入该js,因为lhgdialog.js里面有用到该js中的代码,如果你的框架中有jquery.js那么可以不导入lhgcore.lhgdialog.min.js,我先说说我自己用的效果,我在网页中导入了lhgcore.lhgdialog.min.js和lhgdialog.js,效果是弹出的窗体无法改变样式就是窗体颜色,但是我导入jquery.js和lhgdialog.js就可以改变样式,这可能就是兼容性问题

窗口lhgdialog.min.js文件的url参数
参数形式为:<script type="text/javascript" src="lhgdialog.min.js?self=true&skin=chrome"></script>
self:指定弹出窗口的页面
类型:String
默认:‘false‘
说明:此参数只用在框架页面中,如果不写此参数或值为false时则窗口跨框架弹出在框架最顶层页面,如果值为true则不跨框架,而在当前面页弹出。
skin:多皮肤共享CSS文件名
类型:String
默认:‘default‘
说明:不写此参数则值为default。如果你想在同一页面使用不同皮肤的窗口,此处的值就为多皮肤共存的CSS的文件名
url参数不需要设定的就可以不写,不写时就使用默认值。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-type" content="text/html;charset=GB2312" >
            <script type="text/javascript" src="jquery-1.9.1.js"></script>    
            <script type="text/javascript" src="lhgdialog.js?self=true&skin=igreen"></script>
            <script type="text/javascript">
            $(document).ready(function(){
            $(".printbutton").bind("click",function(){
                $.dialog({title:第一次lhgdialog.js的测试!!!});
            });
            });
            </script>
        </meta>
    </head>
    <body>
        <input type="button" value="测试" class="printbutton">
    </body>
</html>

   先上js代码看看

$("#chooseGoods").click(function(){
                var arrs = new Array();
                $("input[class=‘xh‘]").each(function(){
                    arrs.push($(this).val());
                });
                $.dialog({
                    title:"选择商品",data:{"arrs":arrs},ok:function(){
                        var result = "";
                        var arrays = null;
                        var count = 0;
                        $("input[type=‘checkbox‘]:checked",this.content.document).each(function(index){
                            if($(this).attr("id") != ‘checkAll‘)
                            count++;
                        });
                        if(count == 0){
                            $.dialog.alert(‘没有选中记录,请选择‘,function(){},$dialogParent());
                            return false;
                        }
                        $("input[type=‘checkbox‘]:checked",this.content.document).each(function(index){
                            //动态给页面赋值
                            if($(this).attr("id") != ‘checkAll‘){
                                  result =  $(this).attr("returnvalue");//找到父窗口中的这个returnvalue
                                  arrays = result.split("##");
                      //$(this).parent()指td,$(this).parent().parent()指的就是tr,这里找得就是这一行的第三列                
                      var jqmc=$(this).parent().parent().find("td:eq(3)").text();
                            var a = $.grep(arrs,function(n,i){
                      return n==arrays[0];//返回值相等的结果
          });
                                if($.type(a)==‘undefined‘ || a==‘‘){
                                    addsj(arrays[0],arrays[1],arrays[2],arrays[3],jqmc,arrays[5],arrays[6]);
                                }
                            }
                        });
                    },
                    content: "url:${base }/goods/goods_checkList.action",
                    width: "1000px",height: "500px",
                    lock:true,
                    parent:$dialogParent()
                });
            });
        });

 

grep的用法可以看如下:

http://www.jquery001.com/jquery-grep-function.html;

http://www.css88.com/archives/2472的介绍

在父窗口中显示有段这样的js用来判断已经选择的数据(比如说当你选了一次,发现选少了或者选错了时,再点一次的时候父窗口需要把你已经选择的选中)

jquery属性介绍:http://blog.csdn.net/mayanling0113/article/details/7403149

    //页面加载初始化
        $(document).ready(function () { 
            var api = frameElement.api;//这个事获取界面的对象
            if(api.data.arrs!=null){//获取子窗口的值
                for(var i=0;i<api.data.arrs.length;i++){
                    $("input[type=‘checkbox‘][value=‘"+api.data.arrs[i]+"‘]").attr("checked", true);
                }
            }
        });
<td align="center"><input type="checkbox" value="${goods.Id}"  id="${goods.zfId}" return_value="${goods.Id}##${goods.Bh}##${goods.mc}##${goods.lx}##${goods.sl}##${goods.jg}##${goods.dz}" name="checkBoxname" /></td>

 小知识点:

  有关parent和parents的区别

    parent:可以说是当前对象的父元素。比如说<td><input type="text" name="输入"></td>,在这里:$(:text).parent()的父元素就是<td></td>

    parents:可以说就是你的家族只要是你这一代的祖辈都是,可以看出找这些就是看该元素在那个包围圈内。

    这里有个链接可以直接去学习下,将的很详细了。我自己也是试验了一遍,觉得很好:

    http://blog.csdn.net/cui_angel/article/details/7903704

 

三:总结

  最近是自己在试着来试验这些前端的框架。觉得动手做还是不一样,有很多问题自己做了才知道的。努力!本来说要离开的,结果经理又让我留下来了,我自己也不知道是留是走,其实很矛盾的。因为我现在还是觉得可以学到很多东西的。知识在一点点的增长,现在才觉得自己还是经验不够啊。所以我自己可能还是决定。。。待定状态啊。

  开始行动就是从这个弹出框开始试验,决定用spring mvc来搭建框架做,用MyBatis来连接数据库。一步步来试验了。准备开始。Go!

 

        

jquery中lhgdialog插件(一)

标签:style   blog   http   io   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/wuhao1991/p/4120028.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!