এইচটিএমএল ডোম Quote অবজেক্ট
Quote অবজেক্ট
Quote অবজেক্ট একটি এইচটিএমএল <q> এলিমেন্ট কে প্রতিনিধিত্ব করে ।
একটি Quote অবজেক্ট তৈরী
document.createElement() মেথড ব্যবহার করে আপনি একটি <q> এলিমেন্ট তৈরী করতে পারবেন:
উদাহরণ
<!DOCTYPE html>
<html>
<head>
<title>জাভাস্ক্রিপ্ট উদাহরণ</title>
</head>
<body>
<button onclick="myFunc()">ক্লিক করুন</button>
<script>
function myFunc(){
var a = document.createElement("q");
var b = document.createTextNode("Modern Bangladesh emerged as an independent nation in 1971 after breaking away and achieving independence from Pakistan in the Bangladesh liberation war.");
a.setAttribute("cite", "https://en.wikipedia.org/wiki/History_of_Bangladesh");
a.appendChild(b);
document.body.appendChild(a);
}
</script>
</body>
</html>
ফলাফল
একটি Quote অবজেক্ট এক্সেস
getElementById() ব্যবহার করে আপনি একটি <q>এলিমেন্ট এক্সেস করতে পারবেন:
উদাহরণ
<!DOCTYPE html>
<html>
<head>
<title>জাভাস্ক্রিপ্ট উদাহরণ</title>
</head>
<body>
<q id="test">Modern Bangladesh emerged as an independent nation in 1971 after breaking away and achieving independence from Pakistan in the Bangladesh liberation war.</q>
<button onclick="myFunc()">ক্লিক করুন</button>
<script>
function myFunc(){
var a = document.getElementById("test");
a.style.color = "teal";
}
</script>
</body>
</html>
ফলাফল
Quote অবজেক্ট প্রোপার্টি
প্রোপার্টি | বর্ণনা |
---|---|
cite | একটি কোটেশনের cite অ্যাাট্রিবিঊটের ভ্যালু সেট করে অথবা রিটার্ন করে । |
স্ট্যান্ডার্ড প্রোপার্টিজ এবং ইভেন্ট
প্রোপার্টি | ইভেন্ট |
---|---|
সাপোর্ট করে। এখানে দেখুন | সাপোর্ট করে। এখানে দেখুন |