0

我正在尝试制作一个选项值列表以更改为普通链接。我在这里阅读了几篇文章,但我真的无法弄清楚这一点。

带有选择框的原始代码如下:

   <form class="formProduct" id="product_configure_form" action="webshop.com/add/123456" method="post">
     <div class="product-configure">
      <div class="product-configure-variants">
       <label for="product_configure_variants">Choose: <em>*</em></label>
       <select onchange="document.getElementById('product_configure_form').action = 'http://webshop.com/product/variants/3415658/'; document.getElementById('product_configure_form').submit();" id="product_configure_variants" name="variant">
          <option value="5884844">Size 1</option>
          <option value="5884845">Size 2</option>
          <option selected="selected" value="5984036">Size 3</option>
        </select>
       </div>
       ....
      </form>

我尝试将选项值更改为普通文本链接。表格需要保持功能。所以我试图让实际的表单不可见,然后使用这段代码:

      <div class="sizes">
        <a title="size 1" id="5884844" onclick="belt_size_change(this);" onfocus="this.blur();" href="javascript:;">Size 1</a>
        <a title="size 2" id="5884845" onclick="belt_size_change(this);" onfocus="this.blur();" href="javascript:;">Size 2</a>
        <a title="size 3" id="5984036" onclick="belt_size_change(this);" onfocus="this.blur();" href="javascript:;">Size 3</a>
       </div>
      </div>

和jQuery:

     function belt_size_change(val){
      value = val.id;
      new_value = val.id;
      new_value = new_value.substr(1,99);
      $('#product_configure_variants').val(new_value);
      document.getElementById('product_configure_form').action = 'http://webshop.com/product/variants/3415658/';

      document.getElementById('product_configure_form').submit();
      }  

      $(document).ready(function() {
       current_value = val.id;
       new_value = "r" + current_value;
       $('#' + new_value).addClass('selected');
      });

当谈到 Jquery 时,我是一个完全的菜鸟,所以请温柔:) 非常感谢任何帮助!

4

1 回答 1

1

一种解决方案是使用 jQuery 的replaceWith()方法。

工作演示:http: //jsfiddle.net/Adsgn/kXtLK/2/

$('select').each(function () {
    $(this).replaceWith('<ul>' + $(this).html() + '</ul>');
});
于 2013-06-02T01:43:29.163 回答