জাভাস্ক্রিপ্ট জেকুয়েরি এঙ্গুলার জেএস এইচটিএমএল সিএসএস বুটস্ট্রাপ পিএইচপি সি প্রোগ্রামিং
লগইন
×

জাভাস্ক্রিপ্ট রেফারেন্স

রেফারেন্স

জাভাস্ক্রিপ্ট

অপারেটর-Operator স্টেটমেন্ট-Statement অ্যারে-Array বুলিয়ান-Boolean স্ট্রিং-String সংখ্যা-Number রেগুলার এক্সপ্রেশন-RegExp গণিত-Math তারিখ-Date কনভার্শন-Conversion

এইচটিএমএল ডোম-DOM

ডোম ডকুমেন্ট-DOMDocument ডোম এলিমেন্ট-DOMElement ডোম এট্রিবিউট-DOMAttribute ডোম স্টাইল-DOMStyle ডোম ইভেন্ট-DOMEvent

এইচটিএমএল অবজেক্ট

<a> <abbr> <address> <area> <article> <aside> <audio> <b> <base> <bdo> <blockquote> <body> <br> <button> <canvas> <caption> <cite> <code> <col> <colgroup> <datalist> <dd> <del> <details> <dfn> <dialog> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <footer> <form> <head> <header> <h1> - <h6> <hr> <html> <i> <iframe> <img> <ins> <input> button <input> checkbox <input> color <input> date <input> datetime <input> datetime-local <input> email <input> file <input> hidden <input> image <input> month <input> number <input> password <input> radio <input> range <input> reset <input> search <input> submit <input> text <input> time <input> url <input> week <kbd> <keygen> <label> <legend> <li> <link> <map> <mark> <menu> <menuitem> <meta> <meter> <nav> <object> <ol> <optgroup> <option> <output> <p> <param> <pre> <progress> <q> <s> <samp> <script> <section> <select> <small> <source> <span> <strong> <style> <sub> <summary> <sup> <table> <td> <th> <tr> <textarea> <time> <title> <track> <u> <ul> <var> <video>


 

এইচটিএমএল ডোম Source অবজেক্ট


Source অবজেক্ট

Source অবজেক্ট এইচটিএমএল(৫)-এ নতুন।

Source অবজেক্ট এইচটিএমএল <source> এলিমেন্টকে কে প্রতিনিধিত্ব করে ।


একটি Source অবজেক্ট তৈরী করি

document.createElement() মেথড ব্যবহারের মাধ্যমে আপনি একটি <source> এলিমেন্ট তৈরী করতে পারবেন:

উদাহরণ

<!DOCTYPE html>
<html>
<head>
<title>জাভাস্ক্রিপ্ট উদাহরণ</title>
</head>
<body>

<audio controls id="test">
Your browser does not support audio tag.
</audio>
<p><button onclick="myFunc()">ক্লিক করুন</button></p>

<script>
function myFunc() {
  var a = document.createElement("source");
  a.setAttribute("src", "../../lib/audio/sweet_bird_sound.mp3");
  a.setAttribute("type", "audio/mpeg");
  document.getElementById("test").appendChild(a);
}
</script>
</body>
</html>

ফলাফল




source অবজেক্ট এক্সসেস

getElementById() ব্যবহারের মাধ্যমে আপনি একটি <source> এলিমেন্ট এক্সসেস করতে পারবেন:

উদাহরণ

<!DOCTYPE html>
<html>
<head>
<title>জাভাস্ক্রিপ্ট উদাহরণ</title>
</head>
<body>

<audio controls>
Your browser does not support audio tag.
<source id="test" src="../../lib/audio/sweet_bird_sound.mp3" type="audio/mpeg">
</audio>
<p><button onclick="myFunc()">ক্লিক করুন</button></p>

<script>
function myFunc(){
  var a = document.getElementById("test").src;
  alert(a);
}
</script>
</body>
</html>

ফলাফল




Source অবজেক্ট প্রোপার্টি

প্রোপার্টি বর্ণনা
media মিডিয়া এট্রিবিউটের ভ্যালু একটি <source> এলিমেন্টের মধ্যে সেট করে অথবা রিটার্ন করে ।
src src এট্রিবিউটের ভ্যালু একটি <source> এলিমেন্টের মধ্যে সেট করে অথবা রিটার্ন করে ।
type type এট্রিবিউটের ভ্যালু একটি <source> এলিমেন্টের মধ্যে সেট করে অথবা রিটার্ন করে ।

স্ট্যান্ডার্ড প্রোপার্টিজ এবং ইভেন্ট

প্রোপার্টি ইভেন্ট
সাপোর্ট করে। এখানে দেখুন সাপোর্ট করে। এখানে দেখুন