Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jquery、xml、およびhtmlを使用してxmlファイルを読み取ることができます
しかし、jquery を使用して xml のタグ値を変更する必要があります。
クライアント側のスクリプトのみを使用して、オフラインでこのタスクを実行する必要があります
とても簡単です。
たとえばyour_tag.attr('attribute_name')、xml ノードから読み取るために使用する場合はyour_tag.attr('attribute_name',value)、その値に書き込むだけです。(タグ属性値用)
your_tag.attr('attribute_name')
your_tag.attr('attribute_name',value)
タグのすべての子 (属性ではなく、タグの「内部」) をすべて変更する場合は、次のように記述します。your_tag.html('your_value')
your_tag.html('your_value')