我有这样的表格
<label>Select country</label>
<select name="country">
<option value="IND" selected="selected">India</option>
<option value="MY">Malaysia</option>
<option value="US">United states</option>
</select>
</label>
我想使用 jquery 获取所选国家/地区的值。
这是我在 jquery 文档块中的代码:我的 jquery 版本:jquery-1.10.1.js
alert($('select[name="country"]').find(":selected").val());
alert($('select[name="country"] option:selected').val());
我不喜欢按 ID 或类调用选择器。提前致谢。
我无法为国家/地区选择框编写 onChange。我需要对日期输入字段(followup_date)的模糊执行 ajax 请求。
$('#followup_date').change(function(e) {
if($(this).val()!='')
{
//$('.tmslot').not(this).attr('checked', false);
var slot = $(this).val();
var country_id = $('select[name="country"] option:selected').val();
我的问题是我的country_id未定义。