我使用「change'功能把選擇框的值轉換成輸入查找使用jQuery特定字符串
$("#afa_select").change(function() {
var nd_value = $('#afa_select :selected').text();
$("#nd_hidden").val(nd_value);
});
的選擇框的選項包含以下字符串:
text 10 Jahre
another text 6 Jahre
just another text 12 Jahre
another text with a figure e.g. 1000 6 Jahre
another text with a figure e.g. 3234 6 Jahre
我需要找到字符串「Jahre」前面的數字,並將該值放入輸入#nd_hidden中。
「Jahre」的位置總是一樣嗎? – Brad
這不是一個jQuery的東西,它是一個JavaScript的東西。你有什麼嘗試?你卡在哪裏? –
你可以使用這個數字作爲選項的屬性,這樣更容易閱讀,只是一個建議。其他方法是用正則表達式來完成。 – Mutant