无法使用JQuery / Javascript </selected>读取<selected>元素的值格式

时间:2014-11-05 06:04:56

标签: jquery forms select element

我无法获得表单元素的值,即使从其他类似的问题来看也是如此。

仅供参考 - 我有一个功能可以将2个ID(#selected_sign&amp; #selected_sign_form)写入文章和嵌套在文章中的表格 - 这纯粹是为了造型/识别目的。

以下是无法根据分配的ID获取元素值的函数:

var sSize_prices= new Array();
sSize_prices["45"]=45; //per sq ft
sSize_prices["60"]=65; //per sq ft

function getSizePrice() {
var getSizePrice=0;

var theForm = document.forms["selected_sign_form"];
var selectedSize = theForm.elements["os0"];
alert(selectedSize.value);

getSizePrice = sSize_prices[selectedSize.value];

return getSizePrice;
}

以下是包含ID&#39; d文章和表单的HTML标记:

<section class="sign_type">
    <h3>Selection</h3>
    <article class="signs" onclick="calculateTotal()" id="selected_sign">
      <figure class="sample">
        <a href="/cat/s1b.png" rel="lightbox" title="Sign preview">
          <img class="sign_preview" src="/cat/s1.png" alt="Sign preview" title="Sign preview" />
        </a>
      </figure>
      <form action="" class="options" onsubmit="return false;" id="selected_sign_form">
        <div class="sign_option1"><label class="on0">Size:</label>
          <select name="Size" class="os0" onclick="calculateTotal()">
            <option value="45">45cm sq</option>
            <option value="60">60cm sq</option>
          </select>
        </div>
        <div class="sign_option2"><label class="on1">Qty:</label>
          <input name="Quantity" class="os1" value="1" onkeyup="calculateTotal()" />
        </div>
        <div class="sign_option3"><label class="on2">Fine:</label>
          <input name="Custom" class="os2" value="" />
        </div>
      </form>
      <div class="price"></div>
    </article>
</section>

2 个答案:

答案 0 :(得分:1)

你可以使用jQuery来做到这一点。您可以使用不同的jQuery Selector,使用'id'选择器来获取表单元素,并使用.find()来获取select元素。

var sSize_prices= new Array();
sSize_prices["45"]=45; //per sq ft
sSize_prices["60"]=65; //per sq ft

function getSizePrice() {
var getSizePrice=0;

var selectBox= $("#selected_sign_form").find(".os0:first");
alert($(selectBox).val());

getSizePrice = sSize_prices[$(selectBox).val()];

return getSizePrice;
}

注意 - 请在script之前加入jquery库。要包含jquery库,请参阅this

答案 1 :(得分:0)

您的代码很好,只需要修改一个小HTML。

以下一行是在表单中查找元素,其中包含属性&#34; name&#34;等于&#34; os0&#34;:

theForm.elements["os0"];

如果您要设置&#34;的名称,请选择&#34;标记为&#34; os0&#34; - 它会起作用。

<强> E.G。

<select name="os0" class="os0" onclick="calculateTotal()">