এইচটিএমএল ডোম Samp অবজেক্ট
Samp অবজেক্ট
Samp অবজেক্ট এইচটিএমএল <samp> এলিমেন্টকে প্রতিনধিত্ব করে ।
Samp অবজেক্ট তৈরী
document.createElement() পদ্ধতি ব্যবহারের মাধ্যমে আপনি একটি <samp> এলিমেন্ট তৈরী করতে পারবেন:
উদাহরণ
<!DOCTYPE html>
<html>
<head>
<title>জাভাস্ক্রিপ্ট উদাহরণ</title>
</head>
<body>
<button onclick="myFunc()">ক্লিক করুন</button>
<script>
function myFunc(){
var a = document.createElement("samp");
var b = document.createTextNode("Sample output.");
a.appendChild(b);
document.body.appendChild(a);
}
</script>
</body>
</html>
ফলাফল
Samp অবজেক্ট এক্সেস
getElementById() ব্যবহারের মাধ্যমে আপনি একটি <samp> এলিমেন্ট এক্সেস করতে পারবেন:
উদাহরণ
<!DOCTYPE html>
<html>
<head>
<title>জাভাস্ক্রিপ্ট উদাহরণ</title>
</head>
<body>
<button onclick="myFunc()">ক্লিক করুন</button>
<samp id="test">Sample output.</samp>
<script>
function myFunc(){
var a = document.getElementById("test").innerHTML;
alert(a);
}
</script>
</body>
</html>
ফলাফল
স্ট্যান্ডার্ড প্রোপার্টিজ এবং ইভেন্ট
প্রোপার্টি | ইভেন্ট |
---|---|
সাপোর্ট করে। এখানে দেখুন | সাপোর্ট করে। এখানে দেখুন |