我有一个带有iframe的页面,根据我在iframe中的操作,我需要在iframe的父元素上放置一个meta标签。我如何在后面的代码中做到这一点。我所拥有的是这样的,但是meta标签被放在iframe中。
// code behind of the iframe where I created a meta tag and placed it on the page.
HtmlMeta meta = new HtmlMeta();
meta.Name= "Keywords";
meta.Content = "some keywords i created based o
我试图为我的每个视图设置唯一的标题和元标记。如果我在视图顶部按以下方式设置标签.
{{
response.title='My Product view'
response.meta.keywords='phones,calls,smartphone'
response.meta.description='This is a phone seller site made with web2py'
response.meta.author='me'
}}
{{extend 'layout.html'}}
...th
<meta name="twitter:card" content="summary">
<meta property="twitter:title" content="Website's title">
<meta property="twitter:description" content="Lorem ipsum dol sor em convectur">
<meta property="twitter:image" con
我正在用lxml解析HTML页面。页面的meta标签如下所示:
<meta property="og:locality" content="Detroit" />
<meta property="og:country-name" content="USA" />
如何使用lxml高效地查找每个页面上的og:locality元标记的值?
我目前得到了以下内容,它只是根据属性手动匹配meta标签:
for meta in doc3.cssselect('meta'):
prop = me
我有以下代码:
List<HtmlMeta> metas = new List<HtmlMeta>();
foreach (Control c in this.Page.Header.Controls)
if (c.GetType() == typeof(HtmlMeta))
{
HtmlMeta meta = (HtmlMeta)c;
if (meta.Name == "CategoryID")
strMeta = meta.Content;
}
我创建了这个定制的meta