مثال
عودة رأس HTTP للحصول على المعلومات في content السمة:
var x = document.getElementsByTagName("META")[0].httpEquiv;
ونتيجة لالعاشر على النحو التالي:
content-type
انها محاولة لنفسك » تعريف واستخدام
مجموعات الملكية httpEquiv أو بإرجاع رأس HTTP للحصول على المعلومات في content السمة.
و http-equiv السمة يمكن استخدامها لمحاكاة رأس استجابة HTTP.
قيمة http-equiv السمة تعتمد على قيمة content السمة.
ملاحظة: إذا كان name تعيين السمة، و http-equiv لا يجب تعيين السمة.
دعم المتصفح
ويدعم خاصية httpEquiv في جميع المتصفحات الرئيسية.
بناء الجملة
إعادة الممتلكات httpEquiv:
metaObject .httpEquiv
تعيين الخاصية httpEquiv:
metaObject .httpEquiv=HTTP-header
بعض القيمHTTP-رأسشيوعا هي:
Value | Description |
---|---|
content-type | Specifies the character set for the contents of the document. Tip:It is recommended to always specify the character set. Example: <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
default-style | Specifies the preferred style sheet to use. Example: <meta http-equiv="default-style" content=" the documents preferred stylesheet "> Note: The value of the content attribute above must match the value of the ttitle attribute on a link element in the same document, or it must match the value of the title attribute on a style element in the same document. |
refresh | Defines a time interval for the document to refresh itself.
Example: <meta http-equiv="refresh" content="300"> Note: The value "refresh" should be used carefully, as it takes the control of a page away from the user. Using "refresh" will cause a failure in W3C's Web Content Accessibility Guidelines . |
قيمة الإرجاع
Type | Description |
---|---|
String | Information about the HTTP response message header |
المزيد من الأمثلة
مثال
تغيير قيمة HTTP-EQUIV والمحتوى الصفات. والمثال التالي تجديد وثيقة كل 30 ثانية:
document.getElementsByTagName("META")[0].httpEquiv = "refresh";
document.getElementsByTagName("META")[0].content = "30";
انها محاولة لنفسك » كائن ميتا