文章目录[隐藏]
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.mi<strong>+本文来源gao@daima#com搞(%代@#码网</strong><pre>搞代gaodaima码
n.js”></script>
test test1 haha1 haha1
<script type=”text/javascript”> function save(){ $(“.tables select option:selected”).each(function(){ var signSelect = this.name+”=”+this.value; alert(signSelect); }); }</script>
this.name 取不到 select name ?帮忙
回复讨论(解决方案)
test
因为each中,this是指option。而option没有name。
改成这样就可以了。
var signSelect = this.parentNode.name+"="+this.value;