ماهي لغة jQuery
ماهي لغة jQuery
AJAX -
يتم تخزين مكتبة jQueryفي ملف JavaScriptمستقل يحتوي على جميع طرق
. jQuery
><head
><script type="text/javascript" src="jquery.js"></script
></head
. الحظ بأن وسم < >scriptيجب أن يكون ضمن قسم <>head
مثال
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>
<body>
<h2><هذا عنوان/h2>
<p><هذا موضوع/p>
<p> <هذا موضوع آخر/p>
<button><اضغط هنا/button>
</body>
</html>
jQuery تحميل
واحدة مصغرة واألخرى غير مضغوطة ( خاصة: jQuery متوفر نسختين من لغة
.)للقراءة و الكتابة
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
Microsoft
<head>
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js"></script>
</head>