在Linux或者苹果Terminal使用Public Key连接SSH

查看更多 →

使用Public Key不用密码登陆

当我们拥有一台自己的vps的时候, 很多时候, 我们会考虑服务器的安全, 安全从最简单的做起, “密码”这块, 使用一种被称为"公私钥&qu
查看更多 →

JS添加国家下拉表单

Download Source Code from attachment, unzip and get the .js file Put this code between your and section: <script src="countries3.js" type="text/javascript"></script> Put this code between your and section: Select Country: <select onchange="print_state('state',this.selectedIndex);" id="country" name = "country"></select> City/District/State: <select name ="state" id = "state"></select> <script language="javascript">print_country("country");</script> Please note that, we are using two select tags, which are actual drop-down boxes. Here I’ve chosen “country
查看更多 →