私はdellなどのように私のサイトのカスタムコンピュータビルダーを作っています。以前のラジオで設定されたデータソケットを持つラジオだけを表示
基本的にあなたがあなたのプロセッサを選択することができ、それらのためのHTMLは次のようになります。
<div class="process_intel_options" style="display:block">
<label class="option">
<input type="radio" name="processor_options" value="124" data-price="195.82" data-socket="1366" class="calculation-item" id="intel_options_0" checked="checked" />
Intel Core i7 960 3.20Ghz (Nehalem) <span class="item_price positive">+0</span> </label>
<br />
<label class="option">
<input type="radio" name="processor_options" value="149" data-price="250.00" data-socket="1155" class="calculation-item" />
Processor socket 1155 <span class="item_price positive">+0</span> </label>
<br />
<label class="option">
<input type="radio" name="processor_options" value="125" data-price="359.99" data-socket="1366" class="calculation-item" />
Intel Core i7 980 3.33Ghz (Gulftown) <span class="item_price positive">+0</span> </label>
<br />
</div>
<div class="process_amd_options" style="display:none">
<label class="option">
<input type="radio" name="processor_options" value="126" data-price="133.32" data-socket="am3" class="calculation-item" id="amd_options_0" />
AMD Bulldozer FX-8 Eight Core 8120 3.10Ghz <span class="item_price positive">+0</span> </label>
<br />
<label class="option">
<input type="radio" name="processor_options" value="127" data-price="162.99" data-socket="am3" class="calculation-item" />
AMD Bulldozer FX-8 Eight Core 8150 3.60Ghz <span class="item_price positive">+0</span> </label>
</div>
お知らせ属性data-socket
。
<div class="mobo_options">
<label class="option">
<input type="radio" name="motherboard_options" value="145" data-price="178.00" data-socket="1155" class="calculation-item" id="mobo_options_0" checked="checked" />
Motherboard 1 socket 1155 <span class="item_price positive">+0</span> </label>
<br />
<label class="option">
<input type="radio" name="motherboard_options" value="146" data-price="180.00" data-socket="1155" class="calculation-item" />
Motherboard 2 socket 1155 <span class="item_price positive">+0</span> </label>
<br />
<label class="option">
<input type="radio" name="motherboard_options" value="147" data-price="190.00" data-socket="1366" class="calculation-item" />
Motherboard 3 socket 1366 <span class="item_price positive">+0</span> </label>
<br />
<label class="option">
<input type="radio" name="motherboard_options" value="148" data-price="200.00" data-socket="2011" class="calculation-item" />
Motherboard 4 socket 2011 <span class="item_price positive">+0</span> </label>
<br />
</div>
これも持っているデータ・ソケット:
その後、マザーボードを選択することができます。
正しいソケットタイプのマザーボードを表示するクエリスクリプトを探しています。たとえば、プロセッサがdata-socket="1155"
で選択されている場合は、data-socket="1155"
のマザーボードのみが表示されます一つは、彼らが異なるプロセッサを選択する場合に選択する必要があります。
誰も私を助けることができますか?
こんにちは、それは動作しますが、私はそれを私のメインコードに含めるのに苦労しています、あなたはこのフィドルを見てみてください。 http://jsfiddle.net/Genyx/rnkFr/1/ – Adam
私の答えのコードは、「this」が変更されたラジオ要素であるという事実に基づいています。これはあなたのコードには当てはまりません(イベントの結果としてだけでなく関数として呼び出すことにもなります)、現在選択されているラジオボタンを 'name =" processor_options "'で選択するように変更しました。 'this'よりむしろそれを使用してください。 [更新されたjsFiddle](http://jsfiddle.net/anthonygrist/rnkFr/2/) –
ありがとう! – Adam