事件绑定:
$(document).on('change', 'select[name=innerProductNameZh]', function() {
innerProductId = $('#createInnerPlan select[name=innerProductNameZh]').val();
console.log(innerProductId);
});
事件解绑:
$(document).off('change', 'select[name=innerProductNameZh]');
参考链接:https://www.cnblogs.com/caicaihong/p/9398149.html