اكثر اسئلة واجوبة المقابلات طلبا والاختبارات عبر الإنترنت
منصة تعليمية للتحضير للمقابلات والاختبارات عبر الإنترنت والدروس والتدريب المباشر

طوّر مهاراتك من خلال مسارات تعلم مركزة واختبارات تجريبية ومحتوى جاهز للمقابلات.

يجمع WithoutBook أسئلة المقابلات حسب الموضوع والاختبارات العملية عبر الإنترنت والدروس وأدلة المقارنة في مساحة تعلم متجاوبة واحدة.

التحضير للمقابلة

JavaScript اسئلة واجوبة المقابلات

Test your skills through the online practice test: JavaScript Quiz Online Practice Test

فروقات ذات صلة

سؤال 56. To set all checkboxes to true using JavaScript?

//select all input tags
function SelectAll() {
var checkboxes = document.getElementsByTagName("input");
for(i=0;i if(checkboxes.item(i).attributes["type"].value == "checkbox") {
checkboxes.item(i).checked = true;
}
}
}

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 57. What is === operator?

==== is strict equality operator ,it returns true only when the two operands are having the same value without any type conversion.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 58. How to disable an HTML object?

document.getElementById("myObject").disabled = true;

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 59. To write messages to the screen without using "document.write()"?

Changing the contents of an element is a much better solution. When the method showStatus is invoked it will change the content of the span.
...
function showStatus(message) {
var element = document.getElementById("mystatus");
element.textContent = message; //for Firefox
element.innerHTML = message; //for IE (why can't we all just get along?)
return true;
}
...
<span id="mystatus">Test. </span>
...

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

الاكثر فائدة حسب تقييم المستخدمين:

حقوق النشر © 2026، WithoutBook.
JavaScript vs JqueryJavaScript vs VBScriptJavaScript vs TypeScript