<input name="mobile" value="123456">
<button id="sub">提交</button>



$('#sub').click(function () {
$('[name="mobile"]').trigger('change');
});
$('[name="mobile"]').change(function () {
$(this).val('00000');
});
posted on 2018-10-25 15:49  丢_泡_泡  阅读(122)  评论(0编辑  收藏  举报