HTML DOM Quote Object
Previous >
   <Next  
شئ نقل قول ـQuote Object
شئQuote منتسب با يك عنصر HTML <q> ميباشد .باشئQuote
ميتوان عنصرHTML <q> صفحه را بصورت اقدامات شئ گرائي مديريت كرد.
عنصر<q> براي تعريف نقل قول استفاده ميشود.
دسترسي به شئQuote
با متدgetElementById() ميتوان بعنصرHTML <q> دسترسي
پيداكرد.
مثال ـ دسترسي به عنصرHTML <q> باid="myQuote"
var x = document.getElementById("myQuote");
ايجاد شئQuote
با متدdocument.createElement() ميتوان شئQuote را ايجاد نمود .
مثال ـ ايجاد شئQuote
var x = document.createElement("Q");
Click the button to create a Q element with a link to wwf.org as the source of the quotation.
Try it
--(go to editor for change code and run)
ويژگي هاي شئQuote
ويژگي
شرح
cite
مقدار ويژگيcite يك نقل قول را تنظيم ويابرگشت ميدهد .
تشريح ويژگي هاي شئQuote
ويژگيQuote cite
ويژگيQuote cite مقدار ويژگيcite عنصر HTML <q> مرتبط باشئ
Quoteرا تنظيم ويا برگشت ميدهد .
ويژگيcite آدرس سايتي كه نقل قول مربوط به آن است مشخص ميكند .
مثال ـ آدرسURL نقل قول را برگشت يدهد .
var x = document.getElementById("myQuote").cite;
Here is a quote from WWF's website:
WWF's goal is to:
Build a future where people live in harmony with nature.
We hope they succeed.
Click the button below to return the value of the cite attribute of the quotation above.
Try it
--(go to editor for change code and run)
توجه ـ ويژگيcite در مرورگرهاي وب معمولي هيج اثري ندارد، اما ميتواند توسط صفحه خوانها
استفاده شود.
فرمت استفاده ـSyntax
فرمت برگشت ويژگي
quoteObject. cite
فرمت تنظيم ويژگي
quoteObject. cite=URL
مقادير ويژگي ـProperty Values
مقدار
شرح
URL
نشاني اينترنتي منبع نقل قول رامشخص ميكند.
حالات ممكن:
آدرسurl مطلق كه بسايت ديگري اشاره دارد("http://www.example.com/page.htm") .
آدرس نسبيURL كه اشاره بفايل داخلي وبسايت اشاره دارد(cite="page.htm") .
مثال ـ تغيير آدرسURL يك نقل قول
document.getElementById("myQuote").cite = "http://www.cnn.com/";
Here is a quote from WWF's website:
WWF's goal is to:
Build a future where people live in harmony with nature.
We hope they succeed.
Click the button below to change the value of the cite attribute of the quotation above.
Try it
--(go to editor for change code and run)
شئQuote از ويژگي ها ورويداد هاي استاندارد پيروي ميكند .
صفحات مرتبط
HTML <q> Tag
Previous >
   <Next