«

»

Dec
11

การเปลี่ยนภาษาหน้าเว็ปด้วย html

วิธีนี้้เป็นวิธีง่ายๆ อีกวิธีนึงโดยใช้ css ช่วยนิดหน่อยหน้าเว็ปเราก็สามารถเปลี่ยนภาษาได้แล้วค่ะ
css

body.en :lang(it) {
display: none;
}
body.it :lang(en) {
display: none;
}
Default Language กำหนดที่ body

<body class=”th”>
.
.
.
ปุ่มเลือกภาษา
<button onclick=”document.body.className=’en’”>EN</button>
<button onclick=”document.body.className=’th’”>TH</button>

ข้อความที่ต้องการให้เปลี่ยนภาษาได้
<div lang=”th”>สวัสดี</div><div lang=”en”>Hello</div>

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>