私は N フォームのウェブサイトを持っています。
Foreach フォームでは、すべての入力要素を選択したいと考えています。コードのコメントに (1) + (2) が表示されるようにするにはどうすればよいですか?
doc = CQ.CreateFromFile("sample.html");
doc["form"].Each(e =>
{
// 1) This returns only first level
IEnumerable<IDomElement> inputs = e.ChildElements;
// 2) This refers to all the document again
CQ currentForm = e.Cq().Select["input"]
}
別の質問: DomElement.Cq() が現在の要素ではなくドキュメント全体を参照するのはなぜですか? 現在の要素を参照するにはどうすればよいですか?
ありがとう