前端监听事件
2018-08-08 19:18 马尔代夫_珍 阅读(275) 评论(0) 编辑 收藏 举报 $('body').on('change', '#TxtParterName', function () {
//
var data = ''
$(this).children('option:selected').each(function (i, v) {
console.log(1)
data += $(v).text()
console.log(data)
})
$("#parters").val(data)
})