0

このような2つのオプションを持つ生成された選択フィールドがあります

<div class="PlentyFormContainer">
    <div class="PlentyFormContainer ArticleAttrTd_0 PlentyWebAttributeTitle">Rollen/Gleiter</div>
    <div class="PlentyFormContainer ArticleAttrTd_1 PlentyWebAttributeSelect">
        <select onchange="  this.blur();
                            switchImage(this.value ,'378_0', '378', aAttribute_Image_Values_378);
                            priceChangeOnMarkup(this.value, '2', '0', 'price_dynamic_0_378', aAttribute_Markup_Values_378, aCurrent_Markups_378, oldPrice_378);
                            "
                class="ArticleAttrSelect PlentyAttributeSelect_1" id="attr_row_0_378_2"
                name="ArticleAttribute[0][378][53]"><option value="" class="PlentyAttributeOption">-- bitte wählen --</option><option  value="1364" class="PlentyAttributeOption PlentyAttributeOption_1364">Rolle weich gebremst für harte Böden&nbsp;&nbsp;</option><option  value="1363" class="PlentyAttributeOption PlentyAttributeOption_1363">Rolle hart gebremst für Teppichboden&nbsp;&nbsp;</option>
                </select>
    </div>
</div>

この div-select 全体は、次の要素によって生成されます。

<div class="plentyAttributeSelectWrapper">
   <div class="plentyAttributeSelectWrapperTitle"><span>Rollen/Gleiter</span>
   </div>
   <div class="plentyAttributeSelectWrapperContent plentyAttributeSelectHasDropdown"> 
      <div>
         <div class="plentyAttributeSelectedValue">
           <span class="plentyAttributeSelectedValueName">Rolle weich gebremst für harte Böden</span>
           <span class="plentyAttributeSelectedValueMarkup plentyAttributeSelectValueMarkup"></span><span class="plentyAttributeSelectedArrow">
           <span></span></span>
           <span class="clear"></span>
         </div>
        <div class="plentyAttributeSelectListWrapper">
         <ul>
          <li>
            <div class="plentyAttributeSelectValue">
               <a><span class="plentyAttributeSelectValueName">Rolle hart gebremst für Teppichboden</span>
              <span class="plentyAttributeSelectValueMarkup"></span></a>
           </div>
         </li>
         <li>
            <div class="plentyAttributeSelectValue">
               <a><span class="plentyAttributeSelectValueName">Rolle weich gebremst für harte Böden</span>
              <span class="plentyAttributeSelectValueMarkup"></span></a>
            </div>
         </li>
       </ul>
   </div>
 </div>
 </div>
</div>

オプションの変更時にアラートを強制しようとしても、反応がありません。

4

2 に答える 2

1

生成されたコードは問題ありません。

ここに示されているように、アラートが表示されます: http://jsfiddle.net/ww5Rr/

<select onchange="this.blur(); alert('hi! \nAlert is working...');" >

ここに掲載されていない、呼び出す関数の内部に何かが壊れていて、アラートが表示されない可能性があります。

blur() 呼び出しの直後にアラートを配置してみてください。

于 2012-10-22T13:30:30.860 に答える
0

私はjqueryで選択を取得しようとします:

$('div.PlentyFormContainer select').change(function() {
    alert($(this).find('option:selected').text());
});
于 2012-10-22T13:44:09.607 に答える