0

This is a continuation of a previous question, and I tried the previous method and I'm unsure if I did it correctly, or if it performs the intended function. I'm hoping there's a way to do this with PHP.

Search based on list item class

I'll provide a more detailed explanation this time so I can better understand the logic of the code, and what I'm trying to do.

For example:

domain.com/default.html (the page all of the items I want to retrieve are on)

Below are the pages I want to export these list items to:

domain.com/section/red.html
domain.com/section/blue.html
domain.com/section/green.html

ソース ページで、順序付けられていないリストのリスト項目に赤、青、または緑のクラスのラベルを付けて、ソース ページに表示されるのと同じ順序でそれらを (li タグ内のすべてのマークアップと共に) 送信したいと考えています。上記のそれぞれのページ。クラス red のすべてのリスト項目は red.html に送信され、クラス blue は blue.html に送信されます。

<div id="list">
<ul>
<li class="red"></li> (to red.html)
<li class="green"></li> (to green.html)
<li class="red"></li> (to red.html)
<li class="blue"></li> (to blue.html)
<li class="red"></li> (to red.html)
<li class="green"></li> (to green.html)
</ul>
</div>

また、ソース ページからエクスポートされたマークアップが配置される宛先ページをどのように指定すればよいでしょうか?

PHPでこれを行う簡単な方法はありますか?

ご意見やご支援をいただければ幸いです。ありがとうございました。

4

1 に答える 1

0

この例を使用してみてください。これはあなたの助けになると思います。

​$("#submit").click(function(e){
  e.preventDefault();
  alert($("ul").find(".red").text());
});​

追加したフォームを送信すると、特定のクラスに関連するすべてのデータが読み込まれます。ページをロードするときにそれらをロードできます。

デモ

于 2012-09-28T19:23:25.070 に答える