‎‎ويژگيHTML src

Previous >    <Next  

‎در آدرس دهيHTML آدرس مطلق با استفاده از ويژگي src ياhref انجام ميشود.براي آدرس دهي ‎درHTML ازويژگيsrc درتگ‎<img>‎ وازhref درتگ ‎<link>‎ ‎يا‎<script>‎ وبراي ايجاد لينك مستقيم از ويژگي href درتگ ‎<a>‎ ‎استفاده ميگردد.

‎‎تعريف وكاربردDefinition and Usag -‎

‎‎ويژگي‎src‎ آدرس url يا محل منبع خارجي را مشخص ميكند .

‎‎كاربرد ويژگيApplies to -‎

‎‎ويژگي فوق فقط براي عناصر در جدول زير بكار گرفته ميشود.

‎‎عنصر ‎‎شــرح
<audio> ‎‎يك محتواي صوتي تعبيه شده را تعريف ميكند.
<embed> ‎‎يك محفظه براي يك برنامه بيروني را معرفي ميكند.
<iframe> ‎‎يك فريم برخط تعريف مي نمايد.
<img> ‎‎يك تصوير راتعريف مي نمايد.
<input> ‎‎يك كنترل ورودي را تعريف ميكند.
<script> ‎‎يك اسكريپت سمت كلاينت را معرفي ميكند.
<source> ‎‎منابع پخش را براي عناصر رسانه اي‎<video>,<audio>‎ معرفي ميكند .
<track> ‎‎يك تراك متني براي عناصر رسانه تعريف ميكند.
<video> ‎‎محتوي ويدئوئي تعبيه شده را تعريف ميكند.

‎‎مثالها

‎‎مثالAudio ـ پخش صوتي

 <audio src="horse.ogg" controls>
Your browser does not support the audio element.
</audio> 

--(go to editor for change code and run)

‎‎مثالEmbed ـ يك تصوير تعبيه شده

<embed src="helloworld.swf"> 

--(go to editor for change code and run)

‎‎مثالIframe ـ در ساده ترين كاربرد

<iframe src="/default.asp"></iframe > 

--(go to editor for change code and run)

‎‎مثالImg ـ نمايش تصوير

<img src="smiley.gif" alt="Smiley face"> 

--(go to editor for change code and run)

‎‎مثال‎ Input فرم -HTMl با تصوير بعنوان دكمه ارسال

<form action="/action_page.php">
  First name: <input type="text" name="fname"><br>
  <input type="image" src="submit.gif" alt="Submit">
</form> 

--(go to editor for change code and run)

‎‎مثالScript ـ اشاره به فايل خارجي ازنوع جاوااسكريپت ‎".js‎"‎

<script src="myscripts.js"></script > 

--(go to editor for change code and run)

‎‎مثالSource ـ پخش كننده صوتي با دو فايل صوتي كه مرورگر انكه پشتيباني ميكند پخش ميكند .

 <audio controls>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio> 

--(go to editor for change code and run)

‎‎مثالTrack ـ يك ويدئو با دو آهنگ زير نويس

<video width="320" height="240" controls>
  <source src="forrest_gump.mp4" type="video/mp4">
  <source src="forrest_gump.ogg" type="video/ogg">
  <track src="subtitles_en.vtt" kind="subtitles" srclang="en" label="English">
  <track src="subtitles_no.vtt" kind="subtitles" srclang="no" label="Norwegian">
</video> 


 <video src="movie.ogg" controls>
  Your browser does not support the video tag.
</video> 

‎‎مثالVideo ـ پخش يك ويدئو

<video src="movie.ogg" controls>
  Your browser does not support the video tag.
</video> 

--(go to editor for change code and run)

‎‎پشتيباني مرورگرBrowser Support -‎

‎‎وضعيت پشتيباني مرورگرها نسبت به ويژگي فوق وعناصر مرتبط در جدول زير آمده است.

‎‎عنصر Chorome Edge Firefox Safari Opera
‎audio‎ ‎‎4.0‎ ‎‎9.0‎ ‎‎3.5‎ ‎‎4.0‎ ‎‎10.5‎
‎embe‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎
‎iframe‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎
‎img‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎
‎input‎ ‎‎1.0‎ ‎‎2.0‎ ‎‎1.0‎ ‎‎1.0‎ ‎‎1.0‎
‎script‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎ ‎Yes‎
‎source‎ ‎‎4.0‎ ‎‎9.0‎ ‎‎3.5‎ ‎‎4.0‎ ‎‎10.5‎
‎track‎ ‎‎18.0‎ ‎‎10.0‎ ‎‎31.0‎ ‎‎6.0‎ ‎‎15‎
‎video‎ ‎‎4.0‎ ‎‎9.0‎ ‎‎3.5‎ ‎‎4.0‎ ‎‎10.5‎

‎مرجع كامل تگهايHTML
‎مرجع كامل ويژگيهايHTML


Previous >    <Next