JQ笔记本之attr属性操作(赋值与读取)

来源:互联网 发布:清除mac上的个人信息 编辑:程序博客网 时间:2024/06/14 15:43
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>JQ笔记本之attr属性操作(赋值与读取)</title><script type="text/javascript" src="jquery-1.10.1.min.js"></script><script>$(function(){//alert($('div').attr('title'));$('div').attr('title','456');$('div').attr('class','box');});</script></head><body><div title="123">div</div></body></html>

0 0
原创粉丝点击