<html xmins= "http://www.w3.org/1999/xhtml">是啥意思
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了<html xmins= "http://www.w3.org/1999/xhtml">是啥意思相关的知识,希望对你有一定的参考价值。
xmlns是Xhtml namespace的缩写。作用:由于xml允许定义自己的标记,但你定义的标记和其他人定义的标记有可能相同,但表示不同的含义。当文档交换或者共享的时候就容易产生错误。为避免这种错误产生,xml采用名字空间声明,允许你通过一个网址来识别你的标记。
XHTML是HTML先xml过度的标记语言,它需要符合xml文档规则,因此,也需要定义名字空间,又因为XHTML1.0不能自定义标识,所以,它的名字空间都相同,就是:http://www.w3.org/1999/xhtml
参考资料:http://zhidao.baidu.com/question/320768364.html
参考技术A 一般网站的源代码就有这个angular的filter过滤器
输入过滤器可以通过一个管道字符(|)和一个过滤器添加到指令中,该过滤器后跟一个冒号和一个模型名称。
filter 过滤器从数组中选择一个子集:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<p>输入过滤器</p>
<p><input type="text" ng-model="test"></p>
<ul>
<li ng-repeat="x in names|filter:test|orderBy:'country'">
{{(x.name|uppercase)+','+x.country}}
</li>
</ul>
</div>
<script>
var app=angular.module('myApp',[]);
app.controller('myCtrl',function($scope){
$scope.names=[
{name:'star',country:'china'},
{name:'star1',country:'us'},
{name:'star2',country:'un'}
]
})
</script>
</body>
</html>
以上是关于<html xmins= "http://www.w3.org/1999/xhtml">是啥意思的主要内容,如果未能解决你的问题,请参考以下文章