我從使用JQuery blur()方法的'select'元素的選項拉取值,但由於某種原因它總是拉取selectedIndex = 0的值而不是我選擇的selectedIndex。JQuery沒有選擇SELECT
下面是 - >JSFiddle < - 出於某種原因,第一行工作正常(長度),但沒有其他行工作。
鍵入任何文本框的數字(除了第一個「長度」),然後選擇從毗鄰選擇框中的項目,然後從SELECT
點擊遠離你會看到代碼總是選擇每個SELECT元素中的option = 0的值。它也不能識別我的'數據隱藏'屬性作爲一個數字(見文本框中的HTML元素)
有人可以幫忙嗎?我一直堅持這一天。
**此外,出於某種原因,這隻適用於JQuery 1.7.2,而不是1.9版本(它不喜歡'選項:選擇'代碼,沒有人知道該代碼段如何符合最新發布?
$('select').blur(function() {
//Get the value of the option chosen
var unit = $(this + 'option:selected').val();
//If the selectedIndex is 0 then focus on the select and make the user chose a unit.
if ($(this).prop('selectedIndex') == 0) {
$(this).focus();
return;
} else {
//Remove the 'd' in front of the 'select' element ID and you will have the ID of the textbox
var txt = "#" + $(this).attr("id").substr(1);
//Get the numerical value of the textbox
var mval = parseFloat($(txt).val());
if ($(txt).attr('data-hid') == "OFF") {
var hid = mval/unit;
$(txt).attr('data-hid', hid);
alert("hid = " + hid + "\nmval = " + mval + "\nunit = " + unit);
}
else
{
var hid = $(txt).attr('data-hid');
var newtxt = hid * unit;
$(txt).val(newtxt);
}
}
main();
});
大聲笑...一切正常!我想我試圖讓它太複雜了。謝謝 – bagofmilk 2013-03-01 14:56:27