码迷,mamicode.com
首页 > Web开发 > 详细

jQuery的一些点滴总结

时间:2015-02-03 19:32:28      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:jquery   前端开发   web   

1、动态创建一个全功能的<img>元素:

$('<img>',{
		src:'jump/img/f_banner.png',
		alt:'hello img!',
		title:'just for test',
		click:function(){
			alert("hello,img!!!");
		}
	}).css({
		border:'1px solid red',
		cursor:'pointer',
		padding:'5px'
		
	}).appendTo('body');











jQuery的一些点滴总结

标签:jquery   前端开发   web   

原文地址:http://blog.csdn.net/comeonstone/article/details/43452449

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!