批改状态:未批改
老师批语:


<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <meta charset="UTF-8"> <title></title> <link href="css/style.css" rel="stylesheet" type="text/css"/> <script src="js/jquery-1.8.0.min.js" type="text/javascript"></script> <script src="js/demo.js" type="text/javascript"></script> </head> <body> <div class="wrap"> <div class="header"> <h2>在线相册管理器</h2> <p> <label for="img_url">图片地址:</label> <input type="text" name="img_url" id="img_url" placeholder="images/demo.jpg"></td> </p> <p>图片类型: <input type="radio" id="rect" name="border" value="0" checked><label for="rect">直角</label> <input type="radio" id="radius" name="border" value="10%"><label for="radius">圆角</label> <input type="radio" id="circle" name="border" value="50%"><label for="circle">圆型</label> </p> <p>是否添加阴影: <select name="shadow"> <option value="0" selected>不添加</option> <option value="1">添加</option> </select> </p> <p><button class="add">添加图片</button></p> </div> <div class="main"> <ul></ul> </div> </div> </body> </html>
点击 "运行实例" 按钮查看在线实例
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div>
<form action="api/check.php" method="post">
<fieldset>
<legend>用户登录</legend>
<p>
<label for="email">邮箱:</label>
<input type="email" name="email" id="email">
</p>
<p>
<label for="password">密码:</label>
<input type="password" name="password" id="password">
</p>
<p>
<button>登录</button>
<span id="tips" style="font-size:1.2em;font-weight: bolder;color:red"></span>
</p>
</fieldset>
</form>
</div>
</body>
<script src="js/jquery-1.8.0.min.js" type="text/javascript"></script>
<script>
$('button:first').click(function () {
var url = 'api/user.php?m=login'
var data = {
"email": $('#email').val(),
"password": $('#password').val()
}
var success = function (res) {
if (res == '1') {
$('#tips').text('登录成功,正在跳转中...')
setTimeout(function () {
location.href = 'api/index.php'
}, 5000)
} else {
$('#tips').text('邮箱或密码错误,请重新输入')
$('#email').focus()
setTimeout("$('#tips').empty()", 2000)
}
}
var dataType = 'json'
$.post(url, data, success, dataType)
return false
})
</script>
</html>点击 "运行实例" 按钮查看在线实例
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号