在很多网站上,我发现此代码可以防止在Pinterest上固定内容:
<meta name="pinterest" content="nopin" description="Sorry, you can't save from this website!">
在https://validator.w3.org/nu/上展开我的页面我收到了错误:
Error: Attribute description not allowed on element meta at this point.
那么什么是正确的方法?
答案 0 :(得分:1)
正式var d = 2.147483648;
//Replace , and . for international usability
var temp = d.ToString().Replace(".", string.Empty).Replace(",", string.Empty);
if (temp.Length < 10) {
var i = Convert.ToInt32(temp);
} else {
//there is a big change that the number is not fitting into a int => Do some error handling or use a long or Keep the string or ...
}
标记似乎没有meta
属性
参考:https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta#Attributes
如果你不在乎,你仍然可以包括它(我很确定什么都不会破坏,除了一些温柔的灵魂),或者如果你关心的话就把它留下来,然后Pinterest将使用他们的默认英语信息{ {3}}