A. php中在進入一個界面不登陸用戶的情況下顯示需要登錄的彈窗,並且返回登錄界面
在基礎控制器中判斷這個用戶是否登陸,如果沒有登錄就彈窗提示,並跳轉到登錄頁面
B. html點擊按鈕彈出注冊頁面
<html>
<head>
<script>
function a(){
window.open("2.html",'_blank')
}
</script>
</head>
<body>
<input type="button" value="按鈕" onclick="a()" />
</body>
</html>
用單擊事件完成,裡面 2.html 就是你要跳的頁面名字
C. jsP中JS彈出未登錄提示框並自動跳轉
直接在按鈕點擊的時候,加一個事件,在js代碼中獲取文本框的長度啊,如果長度為0就彈出對話框。
D. 怎麼用js做一個彈出消息提示框
//土司提示框[不帶確認|取消]
functionshowmsg(msg){
varc=$(".showmsg").attr("class");
if(c=='showmsg'){
$(".showmsg").fadeIn(100);
$(".showmsg>span").text(msg);
}else{
varhtm='<divclass="showmsg"><span>'+msg+'</span></div>';
$("body").append(htm);
$(".showmsg").fadeIn(100);
}
setTimeout(function(){
$(".showmsg").fadeOut(100);
},1500);
}
showmsg{
position:absolute;
width:100%;
bottom:15%;
height:40px;
display:none;
z-index:2015;
text-align:center;
}
.showmsg>span{
color:#ffffff;
line-height:40px;
font-size:15px;
padding:10px15px;
border-radius:5px;
background-color:#918585;
font-family:-webkit-body;
}
E. html 怎麼寫彈窗登陸,類似百度登陸
用JS的點擊顯示隱藏效果啊,
先將登錄框定位到瀏覽器的中間,定位用position:fixed;
然後JS效果點擊登錄的時候顯示登錄框:這里登錄名字用enter代替,登錄框用entering代替,這里我們用淡入淡出效果;
$(function(){
$('.enter').click(function(){
$('.entering').fadeIn(200)
})
})
如果要關閉;
自己在登錄框上面的X按鈕上,這里X按鈕用closeOpen代替
$(function(){
$('.closeOpen').click(function(){
$('.entering').fadeOut(200)
})
})