zoukankan      html  css  js  c++  java
  • InnerText和InnerXml的区别

    InnerText和InnerXml的区别
    InnerText无格式显示里面的所有内容,InnerXml含有格式的显示;应该和InnerText和InnerHtml是一样的。

    XmlDocument doc = new XmlDocument();

    doc.LoadXml("<root>" +

                "<elem>some text<child/>more text</elem>" +

                "</root>");

    XmlNode elem = doc.DocumentElement.FirstChild;

    // Note that InnerText does not include the markup.

    Console.WriteLine("Display the InnerText of the element...");

    Console.WriteLine(elem.InnerText);

    //来源MSDN


    // InnerXml includes the markup of the element.

    Console.WriteLine("Display the InnerXml of the element...");

    Console.WriteLine(elem.InnerXml);

    // Set InnerText to a string that includes markup.

    // The markup is escaped.

    elem.InnerText = "Text containing <markup/> will have char(<) and char(>) escaped.";

    Console.WriteLine(elem.OuterXml);

    // Set InnerXml to a string that includes markup.

    // The markup is not escaped.

    elem.InnerXml = "Text containing <markup/>.";

    Console.WriteLine(elem.OuterXml);

    Console.Read();

    输出:

    Display the InnerText of the element...

    some textmore text

    Display the InnerXml of the element...

    some text<child />more text

    <elem>Text containing &lt;markup/&gt; will have char(&lt;) and char(&gt;) escape

    d.</elem>

    <elem>Text containing <markup />.</elem>


    本文来自 MaliYa

  • 相关阅读:
    浅谈服务端渲染
    vuex数据持久化
    vuex中的命名空间
    如果在项目中使用阿里图标库
    vue中的插槽
    webpack相关以及搭建react环境
    数组的reduce方法
    再也不用等后端的接口就可以调试了Json-server
    react中如何使用swiper
    解决vue中组件库vant等ui组件库的移动端适配问题
  • 原文地址:https://www.cnblogs.com/dragonstreak_1/p/1742867.html
Copyright © 2011-2022 走看看