ajax之post get

前端之家收集整理的这篇文章主要介绍了ajax之post get前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//表单整个提交,参数可写为$(form).serialize(),vargetTQ=function(id){
		$.post("<?PHPechourl('public/Gettq');?>",{id:id},function(res){
			if(res&&res.code==200)
			{
			vardata=res.data.weatherinfo;
			$("#tianqi_wendu").html(data.temp1);
			$("#tianqi_title").html(data.weather.substring(0,4));
			$("#tianqi_icon").html("<imgalt=\""+data.weather+"\"src=\"http://www.weather.com.cn/m2/i/icon_weather/29x20/"+data.img1+"\"/>");
			}
			//else
			//jAlert(res.msg);
		},"json");
		returnfalse;
	}
	$('#tianqi').change(function(){
		getTQ($(this).val());
});
$('.moviea').click(function(){
	$.get('<?PHPechourl('default/video');?>',{},function(res){$('#movieshow').html(res);},'html');
});
原文链接:https://www.f2er.com/ajax/164875.html

猜你在找的Ajax相关文章