首页 > 代码库 > web程序前台视频插件
web程序前台视频插件
需要引入两个js文件
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@page import="java.util.ArrayList"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="ctx" value="http://www.mamicode.com/${pageContext.request.contextPath}"/>
<!doctype html public "-/w3c/dtd html 4.01 transitional/en" "http://www.w3.org/tr/html4/loose.dtd">
<%
String video_url = (String)request.getSession().getAttribute("url");
String url = video_url.substring(46, video_url.length());
String videoName = video_url.substring(70, video_url.length());
System.out.println(url);
%>
<script type="text/javascript" src="http://www.mamicode.com/${ctx}/resources/media/jquery.media.js"></script>
<script type="text/javascript" src="http://www.mamicode.com/${ctx}/resources/media/jquery.metadata.js"></script>
<html>
<head>
<title>JQuery视频插件</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="MMPS">
</head>
<body>
<script type="text/javascript">
$(‘a.media‘).media();
</script>
<a class="media {width:480, height:425}" href="http://www.mamicode.com/"><%=videoName %></a>
</body>
</html>
web程序前台视频插件