Javascript 은 select 드 롭 다운 상자 에서 선택 한 값 을 가 져 와 서 사용 합 니까?전달 매개 변수

2092 단어 기타

	function jump()
	{
		var obj=document.getElementById("option");
		var index=obj.selectedIndex;
		var value=obj.options[index].value;
		var str=document.getElementById("inputtext").value;
		if(value==1)
			window.location.href="searchbookn.jsp?str="+str;
		else
			window.location.href="searchauthor.jsp?str="+str;	
		
	}



		
매개 변 수 를 가 져 오 는 페이지:


http://www.cnblogs.com/itdream/archive/2012/05/31/2528345.html

id=test , ?

javascript jquery

code:

:javascript

  1: select : var  myselect=document.getElementById("test");

  2: :var index=myselect.selectedIndex ;             // selectedIndex index

  3: options value:  myselect.options[index].value;

  4: options text:  myselect.options[index].text;

:jquery ( jquery )

1:var options=$("#test option:selected");  //

2:alert(options.val());   //

3:alert(options.text());   //

just think and do it

좋은 웹페이지 즐겨찾기