1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- function CreatePopLayerDiv2(width,height,url){
- var Iheight=$(window).height();
- var Iwidth =$(window).width();
- var heights = height || 300;
- var widths = width || 500;
- var Oheight= (Iheight -heights) / 2;
- var Owidth = (Iwidth - widths) /2;
- var div ='<div id="InDiv2" style="width:'+Iwidth+'px;height:'+Iheight+'px; background:#fff; position:fixed;z-index:30;top:0;left:0;">';
- div+='<div id="offDiv2" style=" width:100%; height:100%; left:0px; top:0px; position:fixed;z-index:32;">';
-
- div+='<div id="Content2"></div>';
- div+='</div>';
- div+='</div>';
- $(document.body).append(div);
- if(url != ""){
- $("#Content2").load(url);
- }
- }
- function RemoveDiv2(){
- $("#offDiv2").remove();
- $("#InDiv2").remove();
- }
- function btnCloses2(){
- RemoveDiv2();
- $('#serachBox2').show();
- $('.my_needs').show();
- $('.home_module_channel').show();
- $('.footer_copy').show();
- }
- $(function(){
- $(".js_y_lplist_inp").click(function(){
- var urlstr = window.location.href;
- var searchurl = urlstr.substring(0,urlstr.indexOf('?')+1);
- console.log(searchurl)
-
- CreatePopLayerDiv2('100%','100%',"/public/searchalertwindow");
- $('#serachBox2').hide();
- $('.my_needs').hide();
- $('.home_module_channel').hide();
- $('.footer_copy').hide();
-
- });
- })
|