image dashite shimau jquery

<!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" xml:lang="ja" lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <link href="image.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> <script> $(function(){ $("a").click(function(){ $("img").attr("src",$(this).attr("href")); return false; }); }); </script> </head> <body> <ul> <li><a href="1.jpg">サンプル1</a></li> <li><a href="2.jpg">サンプル2</a></li> <li><a href="3.jpg">サンプル3</a></li> <li><a href="4.jpg">サンプル4</a></li> </ul> <p><img src="1.jpg"></p> </body> </html>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.