你怎么称呼"xmlns:p ="http://primefaces.org/ui",它们是标签吗?
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
Run Code Online (Sandbox Code Playgroud)
它是XML命名空间别名.它引入p了命名空间的简写,http://primefaces.org/ui从那时起:
<p:moose>
Run Code Online (Sandbox Code Playgroud)
作为简写
<moose xmlns="http://primefaces.org/ui">
Run Code Online (Sandbox Code Playgroud)