本文整理汇总了C#中IHtmlElement.InnerHtml方法的典型用法代码示例。如果您正苦于以下问题:C# IHtmlElement.InnerHtml方法的具体用法?C# IHtmlElement.InnerHtml怎么用?C# IHtmlElement.InnerHtml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IHtmlElement
的用法示例。
在下文中一共展示了IHtmlElement.InnerHtml方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BindElement
private void BindElement( IHtmlElement element, Dictionary<string, string> dictionary )
{
var text = element.InnerHtml();
foreach ( var pair in dictionary )
text = text.Replace( string.Format( "#{0}#", pair.Key ), pair.Value );
element.InnerHtml( text );
}
示例2: BindSimpleData
private void BindSimpleData( IHtmlElement element, object data )
{
var htmlContent = data as IHtmlContent;
if ( htmlContent != null )
element.InnerHtml( htmlContent.ToHtmlString() );
else
element.InnerText( data.ToString() );
}
示例3: BindElement
/// <summary>
/// 对 HTML 中的 script 元素进行绑定
/// </summary>
/// <param name="context">当前绑定上下文</param>
/// <param name="element">当前绑定的元素(仅会对 script 元素起作用)</param>
/// <returns>永远返回 false,表示其他绑定器可以继续执行</returns>
public void BindElement( HtmlBindingContext context, IHtmlElement element )
{
if ( !element.Name.EqualsIgnoreCase( "script" ) )
return;
var script = element.InnerHtml();
script = scriptBindingExpression.Replace( script, match =>
{
var expression = BindingExpression.ParseExpression( match.Groups["expression"].Value );
if ( expression == null )
return match.Value;
object dataObject = context.GetValue( expression );
var valueExpression = serializer.Serialize( dataObject );
return match.Groups["declare"].Value + valueExpression + ";";
} );
element.InnerHtml( script );
}
示例4: BuildEntity
private ExamItem BuildEntity(int moduleId, IHtmlElement item)
{
try
{
var id_element = item.FindFirst(@"tr[valign]>td");
var match = Regex.Match(id_element.InnerText(), @"\d+");
int id = Convert.ToInt32(match.Value.Trim());
string title = id_element.NextElement().InnerText().Trim().RemoveHtml().RemoveHtmlEncode();
string answer = item.FindFirst("div[id]").InnerText().Trim().RemoveHtmlEncode();
string examType = item.PreviousElement().Descendants("td")
.ElementAt(1)
.InnerText().Trim().RemoveHtml().RemoveHtmlEncode();
if (answer.StartsWith("答案:"))
{
answer = answer.Substring(3).Trim();
}
var itemType = ItemTypeService.GetByText(examType);
if (itemType == null)
{
logger.Info(string.Format("未匹配的题目类别[{0}],ExamId=[{1}]", examType, id));
}
var model = new ExamItem()
{
Id = id,
Title = title,
Answer = answer,
OriginalHtml = item.InnerHtml(),
Module_Id = moduleId,
ItemType = itemType != null ? itemType.Id : 0,
CreateTime = DateTime.Now,
DelFlag = false
};
return model;
}
catch (Exception ex)
{
WriteLog(item.ToString(), ex.Message);
throw;
}
}
示例5: BuildEntity
private ExamItem BuildEntity(int moduleId, IHtmlElement item)
{
string selector = @"td[width]";
if (false == item.Exists(selector)) { return null; }
var id_element = item.FindFirst(selector);
if (id_element == null) { return null; }
try
{
var match = Regex.Match(id_element.InnerText(), @"\d+");
int id = Convert.ToInt32(match.Value.ToString().Trim());
string title = id_element.Parent().FindFirst(@".MsoNormal>span").InnerText().Trim().RemoveHtml().RemoveHtmlEncode();
string answer = item.FindFirst("#answer").InnerText().Trim();
string strExamType = item.FindFirst(".st_title").InnerText();
string examType = Regex.Match(strExamType, @"(?<=、).*").Value.Trim();
if (answer.StartsWith("答案:"))
{
answer = answer.Substring(3).Trim();
}
var itemType = ItemTypeService.GetByText(examType);
if (itemType == null)
{
logger.Info(string.Format("未匹配的题目类别[{0}],ExamId=[{1}]", examType, id));
}
var model = new ExamItem()
{
Id = id,
Title = title,
Answer = answer,
OriginalHtml = item.InnerHtml(),
Module_Id = moduleId,
ItemType = itemType != null ? itemType.Id : 0,
CreateTime = DateTime.Now,
DelFlag = false
};
return model;
}
catch (Exception ex)
{
WriteLog(item.ToString(), ex.Message);
throw;
}
}