jquery小知识点

jquery设置输入框只能输入数字
$("#main").keyup(function () {
     $(this).val($(this).val().replace(/[^0-9]/g, ''));
  })
jquery获取select选中的值(function)
html部分

jquery部分
function more(e){
	console.log(e)
}

你可能感兴趣的:(jquery)