導航:首頁 > 編程語言 > php彈出輸入框

php彈出輸入框

發布時間:2024-10-25 20:06:46

① PYTHON 網站是否可以實現每次進入一個網站的時候直接在輸入框內顯示上一次輸入的內容

當然可以,以下是一個登錄頁面的例子,在第一次點擊登錄後,第二次再打開網頁就會自動填寫第一次的內容:
<html>
<head><title>登錄網頁</title></head>
<body>
<form action="login.php" method="get" onsubmit="savePassword()">
用戶名<input type="text" id="user" value="" />
密碼<input type="password" id="pwd" value="" />
<input type="submit" value="登錄" />
</form>
</body>
</html>
<script language="javascript">
function setCookie(name,value,expires,path,domain,secure)
{
var expSecs = expires*1000;
var expDate = new Date();
expDate.setTime(expDate.getTime()+expSecs);
var expString = ((expires=="-1") ? "" : (";expires="+expDate.toGMTString()))
var pathString = ((path==null) ? "" : (";path="+path))
var domainString = ((domain==null) ? "" : (";domain="+domain))
var secureString = ((secure==true) ? ";secure" : "" )
document.cookie = name + "=" + encodeURI(value) + expString + pathString + domainString + secureString;//encodeURI escape
}

function getCookie(name)
{
var result = null;
var myCookie = document.cookie + ";";
var searchName = name + "=";
var startOfCookie = myCookie.indexOf(searchName);
var endOfCookie;
if (startOfCookie != -1)
{
startOfCookie += searchName.length;
endOfCookie = myCookie.indexOf(";",startOfCookie);//分隔符;
if (endOfCookie==-1)
{
endOfCookie = mycookie.indexOf("&",startOfCookie);//分隔符&
}
result = decodeURI(myCookie.substring(startOfCookie, endOfCookie));//unescape decodeURI
}
if (result==null) result="";
return result;
}

window.onload=function(){
var user=getCookie("user");
if(user){document.getElementById("user").value=user;}
var pwd=getCookie("pwd");
if(pwd){document.getElementById("pwd").value=pwd;}
}

function savePassword()
{
var user=document.getElementById("user").value;
var pwd= document.getElementById("pwd").value;

setCookie("user", user, 24*60*60*7);//一周後失效
setCookie("pwd", pwd, 24*60*60*7);

return true;
}
</script>
</html>

② 配置完PHP環境後在地址欄輸入http://localhost/phpMyAdmin/index.php彈出的是文件下載打開保存對話框

配置沒有支持PHP,所以你得查看PHP是否可以正常運行了~~~
你先運行http://localhost/,如果這樣可以顯示出PHP的歡迎頁面,那PHP就支持了,這個時候如果還是出現上面那種情況,那就說明你的那個phpMyAdmin沒有安裝好了。

閱讀全文

與php彈出輸入框相關的資料

熱點內容
為什麼燕窩溯源碼可以更改經銷商 瀏覽:949
和伺服器連接的交換機叫什麼 瀏覽:773
蘋果手機如何設置伺服器 瀏覽:934
迅雷下載游戲需要解壓 瀏覽:853
3d平滑命令 瀏覽:41
必須去車管所解壓 瀏覽:387
室友命令我 瀏覽:311
lol全部命令 瀏覽:40
用什麼APP查指數 瀏覽:921
什麼是作品源碼 瀏覽:671
我的理想程序員該怎麼寫 瀏覽:842
英譯中國現代散文選pdf 瀏覽:448
裝飾設計模式java 瀏覽:23
linuxshell清屏命令 瀏覽:136
惠利app是什麼 瀏覽:779
游戲埠讀取伺服器失敗怎麼弄 瀏覽:878
linux修復mbr 瀏覽:128
磁碟格式化基本命令 瀏覽:578
程序員掉入異世界 瀏覽:954
andlua畫質助手源碼 瀏覽:577