首页 > 开发 > PHP > 正文

jQuery Mobile + PHP实现文件上传

2024-05-04 22:40:36
字体:
来源:转载
供稿:网友

很简单的一个小例子 jQuery Mobile + PHP 通过超全局 $_FILES 上传,然后用move_uploaded_file()方法把上传的图片移动到到本地服务器下的文件夹,

下面是html和php的代码

代码如下:
<!DOCTYPE html>
<html>
<head>
                <meta charset = "utf-8">
                <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
                <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
                <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
        <div data-role="page" id="upload" >
               <div data-role="header"  >
                                <h1>校园祭</h1>
                                <a href="#pageone" data-rolr = button data-icon="home" class="ui-btn-left" >首页</a>
                </div>
                <div data-role="content" >
                <form action="upload_file.php" method="post" enctype="multipart/form-data" data-ajax="false">
                                <input  id="uploadimg" name="file"  type="file"  runat="server" method="post"
                                               enctype="multipart/form-data" data-inline="true"  data-ajax="false" />
                                <center><button  data-inline="true"  >上传</button></center>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表