Heim >Web-Frontend >HTML-Tutorial >求大神指教 十分感谢_html/css_WEB-ITnose

求大神指教 十分感谢_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-21 09:05:181047Durchsuche


就是这个  前台的写了页面  让我去实现它 这个是在页面的基础上点击注册单出一个小窗口一样  但是我是个新手一点项目么做过  只能请教大神们了  感谢大神们指点  说的详细点 具体要写什么  感谢了  
这是前台的部分代码


回复讨论(解决方案)

http://yuncode.net/code/c_506e9095772593

http://yuncode.net/code/c_506e9095772593


额  前台已经写出你要说的那个了 我要实现它 但是他不是另起一个页面 而是想你说的那样 我改怎么把它实现呢

<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><script src="http://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script><style>*{margin:0; padding:0; border:none;}</style></head><body><div id="zhezhao" style="background:#000000; opacity:0.7; height:100%; width:100%; position:fixed; top:0; left:0; z-index:10"></div><div id="tanzhuang" style=" background:#FFFFFF;position:fixed; z-index:100;width:80%;"><span id="close" style="float:right;font-size:40px">X  </span><iframe style=" float:left;width:100%; height:500px;" src="http://www.baidu.com"></iframe></div><button id="open" style="font-size:56px;">打开</button></body><script>///显示弹窗$('#open').click(function(){$('#zhezhao').show();$('#tanzhuang').show();	});//关闭弹窗$('#close').click(function(){$('#zhezhao').hide();$('#tanzhuang').hide();	});$(function(){//弹窗定位到屏幕中间;var window_height=$(window).height();	var window_width=$(window).width();	$('#tanzhuang').css('left',(window_width-$('#tanzhuang').innerWidth())*0.5).css("top",(window_height-$('#tanzhuang').innerHeight())*0.5)	//});</script></html>

那个注册按钮好飘逸啊,输入框都没有对齐。

添加一个悬浮的div,把这个div做的跟突出的窗口一样就行了

你要实现什么哟? 前台都已经把页面写好了???js都写了,你要实现啥?是页面还是其他??

你要实现什么哟? 前台都已经把页面写好了???js都写了,你要实现啥?是页面还是其他??


后台   把参数存储到数据库

这就是你要用什么语言的问题了。。。。用什么语言就去看什么语言,然后会有这方面的介绍的。。。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn