我有一个下拉菜单。我用它来选择特定的茶。
<form name="barcode" onSubmit="return OnSubmitForm();" method="post">
<select name="entry_id" id="entry_id">
<option selected="selected">Select a tea</option>
<td><option entry_id="865"> Black Tea</option></td>
<td><option entry_id="123"> Green Tea</option></td>
</select>
<input type="submit" value="Tea story">
</form>
然后我想使用javascript检索所选Tea的entry_id
并将其附加到URL的末尾,例如/myshop/tea/865
&lt; - 865是红茶的入口ID
我的Javascript代码:
<SCRIPT language="JavaScript">
function OnSubmitForm()
{
alert('inside');
var eid = document.getElementById('entry_id').value;
alert(eid);
document.barcode.action ="https://www.myshop.ca/tea/" + eid;
}
</SCRIPT>
但每次附加“红茶”或“绿茶”名称,例如/myshop/tea/Black Tea
或/myshop/tea/Green Tea
。有没有办法在网址末尾添加entry_id
,例如/myshop/tea/865
或/myshop/tea/123
答案 0 :(得分:1)
<form name="barcode" onSubmit="return OnSubmitForm();" method="post">
<select name="entry_id" id="entry_id">
<option selected="selected">Select a tea</option>
<option value="865">Black Tea</option>
<option value="123">Green Tea</option>
</select>
<input type="submit" value="Tea story">
</form>
更加敏感。使用表单小部件,因为它们应该被使用。
答案 1 :(得分:0)
你不应该在select元素中有td
个。此外,您需要将value
元素的option
属性设置为所需的ID。例如:
<select name="entry_id" id="entry_id">
<option selected="selected">Select a tea</option>
<option value="865"> Black Tea</option>
<option value="123"> Green Tea</option>
</select>