为什么把input的select事件放在按钮点击事件里面就不行
$("#bt1").click(function(){
$("input").select(function(e){
alert(e.target.value)
});
});
$("#bt1").click(function(){
$("input").select(function(e){
alert(e.target.value)
});
});
2017-04-20
举报