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

JS函数集锦 持续更新..

时间:2014-07-16 20:04:33      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   数据   width   

//1.打开窗口
function
WinOpen(url, heightV, widthV) { var iTop2 = (window.screen.availHeight - 20 - heightV) / 2; var iLeft2 = (window.screen.availWidth - 10 - widthV) / 2; var params = ‘menubar:no;dialogHeight=‘ + heightV + ‘;dialogWidth=‘ + widthV + ‘;dialogLeft=‘ + iLeft2 + ‘px;dialogTop=‘ + iTop2 + ‘px;resizable=yes;scrollbars=0;resizeable=0;center=yes;location:no;status:no‘ window.showModalDialog(url, window, params); }

 

//2.删除JQUERY.AJAX操作
function DelAtt(aid, pid) {
            if (confirm(‘确定要删除吗?‘)) {
                $.ajax({
                    url: ‘Ajax.aspx‘,
                    type: ‘post‘, //数据发送方式 
                    dataType: ‘html‘,                       //接受数据格式 (这里有很多,常用的有html,xml,js,json) 
                    data: { type: ‘DelAtt‘, aid: aid, pid: pid }, //要传递的数据 
                    async: false,
                    success: function (msg) { //成功 
                        if (msg != "") {
                            $("#tdAtt").html(msg);
                        }
                    }
                });
            }
        }

 

JS函数集锦 持续更新..,布布扣,bubuko.com

JS函数集锦 持续更新..

标签:style   blog   color   os   数据   width   

原文地址:http://www.cnblogs.com/PeaCode/p/3837032.html

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