jquery外获取控件值
var Idtxt = document.getElementById("IDValue").value; alert(Idtxt);
jquery里获取控件值
var Idtxt2 = $("#IDValue").val(); alert(Idtxt2);