鼠标滑动弹出对话框

"$().ready(function() {     

         var indx_target;

         $("#grdTest th").each(function(index) {

        if($(this).html().indexOf("姓名")>0  ){

                            indx_target=index;

                   }

    });

         $("#grdTest tr").find("td:eq("+indx_target+")").mouseover(function(e) {

                   var rect=new Object();

                   rect.w=6000;

                   rect.h=3000;

                   openDialog("CommPage.aspx?pu=102116","大圣", rect);

    });

});"

原文地址:https://www.cnblogs.com/nuaaydh/p/4313213.html