下拉框选中,文本框获取值

下拉框选中 $('#query_1').combobox('setValue', $('#query_1 option')[0].value);

文本框获取值 $('#query_1').textbox('getValue');

文本框赋值

$("#test").val("Hello world");

$("#test").html("Hello world!");

$("#test").val("Hello world");

//js通过id获取html对象并赋值

doument.getElenemtById("name").value="123";//通过id获取id为name元素并修改value属性为123

//通过jquery获取html对象并赋值

$("#name").val("123");//jquery通过id属性并修改value属性为123

$("input[name='name']").val("123");//jquery通过name属性获取html对象并赋值为123

你可能感兴趣的:(下拉框选中,文本框获取值)