//select跳页 function s_click(obj) { var num = 0; for (var i = 0; i < obj.options.length; i++) { if (obj.options[i].selected == true) { num++; } } if (num == 1) { var url = obj.options[obj.selectedindex].value; window.open(url); //这里修改打开连接方式 } }