我想在进入文本框时自动获得价值, 因此选择框值将显示结果。
function check() {
var po_no = $("#txtPO").val();
var url = '@Url.Action("GetDataRef", "Staging", new { po_no = "-1"})';
url = (url.replace("-1", po_no));
console.log(url);
$('#txtRef').combobox({
required: true,
prompt: '-- Choose Plan Ref --',
url: url,
valueField: 'plan_ref',
textField: 'plan_ref',
fitColumns: true
});
}
如何获取视图中设置的值?
结果在选择框中,但是我必须选择可选的。 我希望它自动显示第一个选项而无需再次选择。
<select id="txtRef" name="txtRef" style="width:200px;">
<option value="" selected="selected"></option>
</select>