91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用jQuery的Easyui實現登陸框界面

發布時間:2022-03-30 10:02:16 來源:億速云 閱讀:387 作者:iii 欄目:移動開發

這篇文章主要講解了“怎么用jQuery的Easyui實現登陸框界面”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用jQuery的Easyui實現登陸框界面”吧!

效果圖

怎么用jQuery的Easyui實現登陸框界面

CSS

a{
  text-decoration:none;
}
body{
  margin:0px;
}
#header{
  width:100%;
  height:30px;
  background-color:#E0EFFF;
  padding-top: 5px;
  padding-bottom: 10px;
}
#header .logo{
  margin-left: 50px;
  font-size: 24px;
  font-family: 微軟雅黑;
}
#picture{
  width:100%;
  height:750px;
}
.panel-title {
 text-align: center;
 font-size: 16px;
}
#bootom{
  padding-top:50px;
  width:100%;
  height:100px;
  background: #eaf2ff;
}
#bootom_content{
  margin-left:100px;
  width:80%;
  text-align: center;
  font-size:0.8em; 
}
p{
  line-height:20px; 
}

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
  <!-- 引用的css -->
  <link rel="stylesheet" type="text/css" href="themes/default/easyui.css" rel="external nofollow" >  
  <link rel="stylesheet" type="text/css" href="themes/default/panel.css" rel="external nofollow" >  
  <link rel="stylesheet" type="text/css" href="themes/icon.css" rel="external nofollow" > 
  <link rel="stylesheet" type="text/css" href="css/index.css" rel="external nofollow" > 
  <script type="text/javascript" src="js/jquery.min.js"></script>
  <script type="text/javascript" src="js/jquery.easyui.min.js"></script>
  <title>系統首頁</title>
</head>
<script type="text/javascript">
console.info("==================")
  $('#p').panel('move',{
    left:100,
    top:100
  }); 
</script>
<body>
  <div id="header" >
    <div class="logo" onclick="window.location.href='index.html'">
      <strong信息系統</strong>
    </div>
  </div>
  <div id="picture" >
  <div data-options=" region:'east',split:true,style:{position:'absolute',right:50,top:150}"
 class="easyui-panel " title="用戶登錄" >
      <div >
        <form id="ff" class="easyui-form" method="post" data-options="novalidate:true">
          <table cellpadding="5">
            <tr>
              <td><input class="easyui-textbox" data-options="prompt:'賬號',validType:'name'" iconCls="icon-man" iconAlign=left /></td>
            </tr>
            <tr>
              <td><input class="easyui-textbox" data-options="prompt:'密碼',validType:'password'" iconCls="icon-lock" iconAlign=left ></input></td>
            </tr>
            <tr>
              <td><input class="easyui-textbox" data-options="prompt:'驗證碼',validType:'validate'" iconCls="icon-filter" iconAlign=left  />&nbsp;&nbsp;&nbsp;&nbsp;
              <img src="" alt="" width="56" height="32" align='absMiddle' /> </td>
            </tr>
          </table>
        </form>
        <div >
          <a href="#" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" >登錄</a>&nbsp;&nbsp;&nbsp;&nbsp;
          <a href="#" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" >注冊</a>
        </div>
      </div>
    </div>
  </div>
  <div id="bootom">
    <div id="bootom_content">
      <p><strong>關于我們&nbsp;&nbsp;&nbsp;   法律聲明 &nbsp;&nbsp;&nbsp;  服務條款 &nbsp;&nbsp;&nbsp; 聯系我們</strong></p>
      <p> 
        地址:江西省南昌市經濟開發區天祥大道 &nbsp;&nbsp;&nbsp;郵箱:330000 
        &nbsp;&nbsp;&nbsp;Copyright &copy; 2017 - 2018 &nbsp;&nbsp;&nbsp;hacker_pangdaxing@qq.com 版權所有
      </p>
      <p>
        建議使用IE8以上版本瀏覽器 &nbsp;&nbsp;&nbsp;E-mail:hacker_pandaxing@qq.com
      </p>
    </div>
  </div>
</body>
<script>
  function submitForm(){
    $('#ff').form('submit',{
      onSubmit:function(){
        return $(this).form('enableValidation').form('validate');
      }
    });
  }
  function clearForm(){
    $('#ff').form('clear');
  }
</script>
</html>

感謝各位的閱讀,以上就是“怎么用jQuery的Easyui實現登陸框界面”的內容了,經過本文的學習后,相信大家對怎么用jQuery的Easyui實現登陸框界面這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

同仁县| 宣恩县| 漳浦县| 阳春市| 博白县| 衡山县| 东平县| 焉耆| 昆明市| 当阳市| 扎赉特旗| 商洛市| 衡山县| 西贡区| 新泰市| 塔城市| 青阳县| 石柱| 北流市| 东光县| 商都县| 赫章县| 雷州市| 静海县| 突泉县| 通州区| 米泉市| 七台河市| 蒙山县| 莱阳市| 同德县| 施秉县| 仁化县| 浦北县| 卓资县| 和平区| 五指山市| 青神县| 昌平区| 余庆县| 竹山县|