You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
542 B
28 lines
542 B
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<%@taglib uri="http://zero.jsp/tag" prefix="z" %>
|
|
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<title><z:block name="title" parent="true">这里是标题</z:block></title>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<z:block name="body" parent="true">
|
|
<h1>父模板继承的 body </h1>
|
|
</z:block>
|
|
</body>
|
|
|
|
<z:block name="script" parent="true">
|
|
<script type="text/javascript">
|
|
console.log('父组件')
|
|
</script>
|
|
</z:block>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|