码迷,mamicode.com
首页 > Web开发 > 详细

html5学习笔记(3)

时间:2015-06-23 15:57:52      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:用户名   标签   apple   密码   

html表单的创建


表单:

技术分享


<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <form>
        用户名
        <input type="text">
        密码
        <input type="password">
        <br/>
        <br/>
        fruit
        <br/>
        <input type="checkbox">apple
        <input type="checkbox">banana
        <input type="checkbox">pear

        <br/>
        性别
        <br/>
        男<input type="radio" name="sex">
        女<input type="radio" name="sex">

        <br/>
        city
        <select>
            <option>xiamen</option>
            <option>lanzhou</option>
            <option>fuzhou</option>
        </select>
        <br/>
        <input type="button" value="button">
        <input type="submit" value="提交">
    </form>
    <textarea cols="30" rows="20">info:</textarea>

</body>
</html>


PHP环境搭建:

具体搭建方法参考PHPeclipse的安装。网上可以搜到


html5表单和php交互

定义一个表单提交:

index.html中:

<!DOCTYPE html>
<html>
<head lang="zh">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <form action="http://localhost/myservice/service.php" method="get">
        用户名
        <input type="text" name="name">
        密码
        <input type="password" name="password">
        <br/>

        <input type="submit" value="提交">
    </form>
</body>
</html>


service.php

<?php
/*
 * Created on 2015-6-23
 *
 * To change the template for this generated file go to
 * Window - Preferences - PHPeclipse - PHP - Code Templates
 */
 echo "username".$_GET[‘name‘]."<br>password".$_GET[‘password‘];
?>




html5的框架,背景和实体-框架


html框架:

  1. 框架标签(frame): 框架对于页面的设计有着很大的作用

  2. 框架集标签(<framset>)\

  3. 内联框架:iframe:

http://www.w3school.com.cn/tags/html_ref_byfunc.asp

技术分享

创建三个框架framea.html  framec.html

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body bgcolor="#faebd7">
   framea <br/>
    <!--<iframe src="framec.html" frameborder="0" width="800px" height="800px"></iframe>-->
   <a href="http://www.baidu.com" target="_top">baidu</a>
</body>
</html>


frameb.html,

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body bgcolor="#8a2be2">
    frameb <br/>
    <iframe src="framea.html" width="400px" height="400px"></iframe>
</body>
</html>


framec.html

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body bgcolor="#f0ffff">
    frameb <br/>
    <iframe src="frameb.html" width="600px" height="600px"></iframe>
</body>
</html>


在index.html中

<!DOCTYPE html>
<frame>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
    <!--<a href="http://www.baidu.com" target="_self">baidu</a>-->
    <br/>
    <iframe src="framec.html" frameborder="0" width="400px" height="400px">

    </iframe>
</html>


html 背景

1.背景标签

    background

2.背景颜色:

    bgcolor


html实体:

http://www.w3school.com.cn/tags/html_ref_ascii.asp

<body>
abc&lt;html&gt;
</body>



极客学院:http://www.jikexueyuan.com/course/139.html


本文出自 “thystar” 博客,请务必保留此出处http://4440271.blog.51cto.com/4430271/1664462

html5学习笔记(3)

标签:用户名   标签   apple   密码   

原文地址:http://4440271.blog.51cto.com/4430271/1664462

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!