fis相关标签介绍
?
<%@ page language="java" contentType="text/html; charset=UTF-8"pageEncoding="UTF-8"%><%@ taglib prefix="fis" uri="http://fis.baidu.com/tags"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><fis:html><head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <fis:styles/></head><body> 我是body <fis:script> console.log("11111111"); </fis:script> <fis:require name="resources/lib/bootstrap/css/bootstrap.css"></fis:require> <fis:require name="resources/lib/js/jquery.js"></fis:require> <fis:script> console.log("222222222"); </fis:script> <fis:scripts/> </body></fis:html>
?
?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <link rel="stylesheet" type="text/css" href="resources/lib/bootstrap/css/bootstrap.css"/> </head> <body> 我是body <script type="text/javascript" src="resources/lib/js/jquery.js"/> <script type="text/javascript"> console.log("11111111"); </script> <script type="text/javascript"> console.log("222222222"); </script> </body></html>
?