/// <summary> /// 在当前集合中每个元素的 DOM 位置前面插入新元素,新元素由指定的源字符串构造 /// </summary> /// <param name="strSourceText">源字符串</param> /// <returns>当前集合</returns> public MarcNodeList before(string strSourceText) { if (this.count == 0 || string.IsNullOrEmpty(strSourceText)) { return(this); } if (this[0].NodeType == NodeType.None) { throw new ArgumentException("不允许在 None 对象的后面添加任何对象"); } if (this[0].NodeType == NodeType.Record) { throw new ArgumentException("不允许在 记录 对象的后面添加任何对象"); } MarcNodeList source_nodes = null; string strLeading = ""; if (this[0].NodeType == NodeType.Field) { source_nodes = MarcQuery.createFields(strSourceText); } else { source_nodes = MarcQuery.createSubfields(strSourceText, out strLeading); // leading要追加到目标集合的最后一个元素的Content末尾 if (string.IsNullOrEmpty(strLeading) == false) { this.last()[0].Content += strLeading; } } MarcQuery.insertBefore(source_nodes, this); return(this); }
/// <summary> /// 在当前集合中每个元素的 DOM 位置前面插入指定的源集合内的元素 /// </summary> /// <param name="source_nodes">源集合</param> /// <returns>当前集合</returns> public MarcNodeList before(MarcNodeList source_nodes) { MarcQuery.insertBefore(source_nodes, this); return(this); }
/// <summary> /// 将当前集合中的每个元素插入到指定的目标集合的每个元素的 DOM 位置前面 /// </summary> /// <param name="target_nodes">目标集合</param> /// <returns>当前集合</returns> public MarcNodeList insertBefore(MarcNodeList target_nodes) { MarcQuery.insertBefore(this, target_nodes); return(this); }