私は、次のコードを持っている。その結果、2つのspanタグに示されている時点ではjQueryの:テキストボックスに表示結果
、私はのような2つのショーに参加するために変更する必要がありますか何を値はid=sku
のテキストボックスにありますか?
JS:
$("#options").change(function(){
switch($(this).val()){
case "3370":
$(".display_text_here").text('TB');
break;
case "3371":
$(".display_text_here").text('LT');
break;
case "3375":
$(".display_text_here").text('LTR');
break;
case "3372":
$(".display_text_here").text('BO');
break;
case "3373":
$(".display_text_here").text('MC');
break;
case "3374":
$(".display_text_here").text('NC');
break;
case "3376":
$(".display_text_here").text('STA');
break;
}
});
$("#options2").change(function(){
switch($(this).val()){
case "3423":
$(".display_text_here2").text('12');
break;
case "3424":
$(".display_text_here2").text('24');
break;
case "3425":
$(".display_text_here2").text('48');
break;
}
});
HTML:
<select id="options">
<option value="">Choose...</option>
<option value="3370" >Tight Buffered </option>
<option value="3371" >Loose Tube 900um </option>
<option value="3375" >Loose Tube 2mm </option>
<option value="3372" >Break-Out 2mm </option>
<option value="3373" >Micro Cable 2mm </option>
<option value="3374" >Nano Cable 900um </option>
<option value="3376" >Steel Tape Armoured 900um </option>
</select>
<select id="options2">
<option value="">Choose...</option>
<option value="3423" >12 MC</option>
<option value="3424" >24 MC</option>
<option value="3425" >48 MC</option>
</select>
<br />
<span class="display_text_here"></span><span class="display_text_here2"></span>
<br />
<input type="text" id="sku">
結果はdivに表示され、テキストボックスは表示されません。また、jsfiddleだけでなく、あなたの質問にコードを投稿してください。 –
テキストボックスが表示されません。 – Igor
"2つを結合し、テキストボックスに値として表示する" - 何 "2つ"?あなたは、最終結果をどのように見せたいかの例を挙げることができますか? –