日期:2014-05-17 浏览次数:20789 次
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
//首先你得用ASP获取该页的名字,如1.aspx,然后将前缀传递给参数k
//现在k=1;
var str="<select>";
for(var i=1;i<5;i++){
/*if(i==k){//判断当前页是否是k,若是则置option为选中状态
str+="<option value="+i+" selected='selected' >"+i+"</option>";
}else{*/
str+="<option value="+i+">"+i+"</option>";
//}
}
str+="</select>";
$("#div1").append(str);
$("select").change(function(){
var t=$("option:selected").val();
$("#div1").append("我跳转到了第"+t+"页"+"<br/>");//这个只是跳转的模拟
//window.location.href=t+'.php';//等你能获取页面的前缀把这行去掉就行了
});
})
</script>
<div id="div1">
</div>