jquery常用方法

自己总结的jquery常用方法,陆续添加中

1.获取下拉框的文本值和value值方法

      例子:

<select id="CITYCODE" name="CITYCODE" onChange="setCityName();">
	<option value="">---请选择---</option>
	<option value="11>北京</option>
</select>
function setCityName(bis_type){
    var val=$("#CITYCODE").find("option:selected").val();
     alert(val);

 var text=$("#CITYCODE").find("option:selected").text();
     alert(text);

   }


 

输出:当点击北京时输出11和北京

 

2、jquery遍历json数组:json代码

[
	{
		"text" : "王家湾",
		"value" : "9"
	},
	{
		"text" : "李家湾",
		"value" : "10"
	},
	{
		"text" : "邵家湾",
		"value" : "13"
	}
]

 

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title></title>

<script type="text/javascript" src="script/jquery-1.2.6.min.js"></script>
<script type="text/javascript">
	$(document).ready(function(){
		$("#letter-e .button").click(function(){
			$.getJSON("e.json",function(data){
				$("#dictionary").empty();
				$.each(data,function(entryIndex,entry){
					var html = '<div class="entry">';
					html += '<div class="text">' + entry['text'] + '</div>';
					html += '<div class="value">' + entry['value'] + '</div>';
					html += '</div>';					
					$('#dictionary').append(html);
				});				
			});			
		});
	});	
</script>
</head>
<body>
<div class="letters">
	<div class="letter" id="letter-e">
		<h3>E</h3>
		<div class="button">Load</div>
	</div>
</div>
<div id="dictionary">
</div>
</body>
</html>



 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值