首页 > 代码库 > JS函数集锦 持续更新..
JS函数集锦 持续更新..
//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); } } }); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。