きしめん - Nursery Rhyme
Credit : sutered99
ヒナギク de きしめん
Credit : lightningkira
ラブプラスで きしめん【MAD】
Credit : ihsan026star
บทความ เพื่อ แบ่งปัน ความรู้ ประโยชน์ สำหรับบางคน ไม่ใช่สำหรับทุกๆ คน เป็น แหล่ง ศึกษา แนวคิด ใหม่ สิ่งใหม่ แปลกใหม่ สร้างสรรค์ ก้าวหน้า
กรณีต่างๆ | Code ที่ใช้ คือ |
กรณีที่ 1 - เมื่อต้องการให้ทุกๆ Links เปิดหน้าใหม่ทุกครั้ง | <script src='http://code.jquery.com/jquery-1.4.3.min.js' type='text/javascript'/> <script language='javascript'> $(document).ready(function () { $('a').attr({ 'target': '_blank' }); }); </script> |
กรณีที่ 2 - เมื่อต้องการให้เฉพาะ Links ที่เปิด Website อื่นๆ ภายนอก เท่านั้นที่ Blogspot เปิดหน้าใหม่ | <script src='http://code.jquery.com/jquery-1.4.3.min.js' type='text/javascript'/> <script language='javascript'> $(document).ready(function () { $('a').attr({ 'target': '_blank' }); $('a[href *= blogger.com] , a[href *= blogspot.com]').attr({ 'target': '_self' }); }); </script> |
Code เดิม | <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'> <head> // แทรก Code ลงตรงนี้ <b:include data='blog' name='all-head-content'/> <title><data:blog.pageTitle/></title> |
Code เมื่อแทรก jQuery ลงไปแล้ว | <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'> <head> // แทรก Code ลงตรงนี้ <script src='http://code.jquery.com/jquery-1.4.3.min.js' type='text/javascript'/> <script language='javascript'> $(document).ready(function () { $('a').attr({ 'target': '_blank' }); $('a[href *= blogger.com] , a[href *= blogspot.com]').attr({ 'target': '_self' }); }); </script> <b:include data='blog' name='all-head-content'/> <title><data:blog.pageTitle/></title> |