标签:jquery
jquery基本选择器
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jquery基本选择器</title> </head> <body> <script src="jquery-3.1.0.js"></script> <script> $=jQuery; $("#n1").text(‘123‘); $(‘div‘).text(‘xxx‘); $(‘.c1‘).text(‘ooo‘); $(‘.c1,a,#n2‘).text(‘ok‘); $(‘#n3 div .c3 samp a‘).text(‘kkk‘); $(‘.c4‘).text(‘999‘) </script> </body> </html>
jquery左侧菜单样式代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jquery左侧菜单样式</title> </head> <body> <style> .menu{ float: left;width: 30%;height: 500px;background-color:antiquewhite; } .content{ float: left;width: 70%;height: 500px;background-color: black; } .title{ background-color: black; color: white; height: 50px; line-height: 50px;; } .hide{ display: none; } </style> </body> </html>
标签:jquery
原文地址:http://9272317.blog.51cto.com/9262317/1828552