jQuery
$(this)/ .children/ “option:selected”
( t h i s ) 指 的 是 这 个 当 前 s e l e c t , (this)指的是这个当前select, (this)指的是这个当前select,(this).find(“option:selected”).text()是找到这5261个4102下拉框被选中的option标签的值,1653 ( t h i s ) . p a r e n t ( ) 找 到 这 个 s e l e c t 框 的 父 级 元 素 , (this).parent()找到这个select框的父级元素, (this).parent()找到这个select框的父级元素,(this).parent().children(".select-val")是再找到这个父级元素下的名为select-val的元素,所有,整个代码的意思是:找到下拉框的被选中的值,将这个值写在这个下拉框的父级下面名为select-val的元素内