כיצד לרענן אוטומטית דף אינטרנט כל 5 שניות באמצעות JavaScript

Kyzd Lr Nn Wtwmtyt Dp Yntrnt Kl 5 Snywt B Mz Wt Javascript



ב-JavaScript, ישנם מצבים בהם אנו צריכים לוודא שהתוכן שהוזן באתר מסוים מדויק ועדכני. לדוגמה, נדרש להציג את התוכן העדכני ביותר בדף אינטרנט תוך מילוי טופס ארוך ותצפית על השינויים החדשים או כאשר אתה רוצה לבדוק אתר אינטרנט. במקרים כאלה, רענון אוטומטי של דף אינטרנט כל 5 שניות באמצעות JavaScript עוזר מאוד להתמודד עם מצבים מסוג זה.

מאמר זה ידון בשיטות לרענון אוטומטי של דף אינטרנט כל 5 שניות באמצעות JavaScript.







כיצד לרענן אוטומטית דף אינטרנט כל 5 שניות באמצעות JavaScript?

כדי לרענן אוטומטית דף אינטרנט כל 5 שניות באמצעות JavaScript, ניתן להשתמש בגישות הבאות:



עברו על השיטות הנדונות אחת אחת!



שיטה 1: רענון אוטומטי של דף אינטרנט כל 5 שניות ב-JavaScript באמצעות שיטות setInterval() ו-document.querySelector()

ה ' setInterval() שיטת ' ניגשת לפונקציה במרווח זמן מוגדר ו' document.querySelector() השיטה מקבלת את האלמנט הראשון התואם לבורר CSS. ניתן להשתמש בשיטות אלו בשילוב כדי לגשת לתג הכותרת הספציפי ולקבוע את מרווח הזמן לפונקציונליות הנדרשת בעזרת טיימר.





תחביר

setInterval ( פונקציה, אלפיות שניות, par1, par2 )

בתחביר לעיל, ' פוּנקצִיָה ' מתייחס לפונקציה שיש לגשת אליה, ' אלפיות השנייה ' הוא מרווח הזמן הספציפי לביצוע, ו' זוג 1 ' ו' par2 ' הם הפרמטרים הנוספים.



מסמך. querySelector ( CSS בוררים )

כאן, ' בוררי CSS ' מייצגים בורר CSS אחד או יותר.

בדוק את הדוגמה הבאה.

דוגמא

ראשית, ציין כותרת וכותרת בתגיות ו-<h2>, בהתאמה:</p> <span class="sc2"> < <a href="http://december.com/html/4/element/title.html"><span class="kw2"> כותרת</span></a> ></span> רענון הדף כל 5 שניות<span class="sc2"> <<span class="sy0"> /</span> <a href="http://december.com/html/4/element/title.html"><span class="kw2"> כותרת</span></a> ></span> <br> <span class="sc2"> < <a href="http://december.com/html/4/element/h2.html"><span class="kw2"> h2</span></a> <span class="kw3"> סִגְנוֹן</span><span class="sy0"> =</span><span class="st0"> 'טקסט-align: left'</span> ></span> רענן אוטומטית את הדף<span class="sc2"> <<span class="sy0"> /</span> <a href="http://december.com/html/4/element/h2.html"><span class="kw2"> h2</span></a> ></span> <p> כעת, הגדר ערך טיימר כ' <strong> 1</strong> ”:</p> תן טיימר<span class="sy0"> =</span> <span class="nu0"> 1</span><span class="sy0"> ;</span> <p> לאחר מכן, החל את ' <strong> setInterval()</strong> שיטה עם ' <strong> 1000 אלפיות השנייה</strong> ' ערך. זה יגדיל את הטיימר בכל שנייה. כמו כן, גש לכותרת שצוינה כדי להציג אותה ב-' <strong> Document Object Model (DOM)</strong> ' בסיום ערך הטיימר שהוגדר.</p> <p> לבסוף, חזור על הערך של הטיימר עם התוספת של ' <strong> 1</strong> ' באמצעות ' <strong> ++</strong> ' לאחר ההגדלה ולהחיל תנאי באופן שאם הערך עולה על 5, ה-' <strong> location.reload()</strong> השיטה תגרום לטעינה מחדש של החלון:</p> setInterval<span class="br0"> (</span><span class="br0"> (</span><span class="br0"> )</span> <span class="sy0"> =></span> <span class="br0"> {</span> <br> מסמך.<span class="me1"> querySelector</span><span class="br0"> (</span><span class="st0"> 'h2'</span><span class="br0"> )</span> .<span class="me1"> innerText</span><span class="sy0"> =</span> שָׁעוֹן עֶצֶר<span class="sy0"> ;</span> <br> שָׁעוֹן עֶצֶר<span class="sy0"> ++;</span> <br> <span class="kw1"> אם</span><span class="br0"> (</span> שָׁעוֹן עֶצֶר<span class="sy0"> ></span><span class="nu0"> 5</span><span class="br0"> )</span> <br> מקום.<span class="me1"> לִטעוֹן מִחָדָשׁ</span><span class="br0"> (</span><span class="br0"> )</span><span class="sy0"> ;</span> <br> <span class="br0"> }</span> ,<span class="nu0"> 1000</span><span class="br0"> )</span><span class="sy0"> ;</span> <p> ניתן לראות שדף האינטרנט שלנו מקבל רענון אוטומטי כל חמש שניות:</p> <p> <img class="wp-image-238673" src="https://softoban.com/img/other/A8/how-to-auto-refresh-web-page-every-5-seconds-using-javascript-1.gif"></p> <h2 id="2"> <strong> שיטה 2: רענון אוטומטי של דף אינטרנט כל 5 שניות ב-JavaScript באמצעות אירוע onload</strong> </h2> <p> ה ' <strong> עומס</strong> אירוע מופעל כאשר אובייקט נטען. ניתן ליישם טכניקה זו כדי לרענן את הדף בעזרת פונקציה המוגדרת על ידי המשתמש כאשר דף האינטרנט נטען.</p> <p> <strong> תחביר</strong> </p> לְהִתְנַגֵד.<span class="me1"> עומס</span> <span class="sy0"> =</span> רענן עמוד<span class="br0"> (</span><span class="br0"> )</span><span class="br0"> {</span> myScript<span class="br0"> }</span><span class="sy0"> ;</span> <p> בתחביר הנתון, ' <strong> פוּנקצִיָה</strong> ” מתייחס לפונקציה שיש להפעיל כאשר האובייקט נטען.</p> <p> תסתכל על הדוגמה הבאה.</p> <h3> <strong> דוגמא</strong> </h3> <p> ראשית, כלול כותרת וכותרת כפי שנדון בשיטה הקודמת:</p> <span class="sc2"> < <a href="http://december.com/html/4/element/title.html"><span class="kw2"> כותרת</span></a> ></span> רענן את הדף כל 5 שניות<span class="sc2"> <<span class="sy0"> /</span> <a href="http://december.com/html/4/element/title.html"><span class="kw2"> כותרת</span></a> ></span> <br> <span class="sc2"> < <a href="http://december.com/html/4/element/h2.html"><span class="kw2"> h2</span></a> ></span> רענן אוטומטית את הדף<span class="sc2"> <<span class="sy0"> /</span> <a href="http://december.com/html/4/element/h2.html"><span class="kw2"> h2</span></a> ></span> <p> כעת, החל את ' <strong> עומס</strong> ' אירוע והפעל את הפונקציה ' <strong> רענן עמוד()</strong> ' ולעבור ' <strong> 5000</strong> ' כארגומנט המציין מרווח זמן של חמש שניות:</p> <span class="sy0"> <</span> עומס הגוף<span class="sy0"> =</span> <span class="st0"> 'JavaScript:refreshPage(5000);'</span><span class="sy0"> ></span> <br> <br> <span class="sy0"> </</span> גוּף<span class="sy0"> ></span> <p> לבסוף, הגדר פונקציה בשם ' <strong> רענן עמוד()</strong> ' עם ' <strong> ט</strong> ' כארגומנט המתייחס לזמן שנקבע לרענון אוטומטי של דף האינטרנט. ה ' <strong> location.reload()</strong> ' השיטה תטען מחדש את הדף לאחר הזמן שצוין:</p> פונקציה refreshPage<span class="br0"> (</span> ט<span class="br0"> )</span><span class="br0"> {</span> <br> <br> setTimeout<span class="br0"> (</span><span class="st0"> 'location.reload(true);'</span> , ט<span class="br0"> )</span><span class="sy0"> ;</span> <br> <br> <span class="br0"> }</span> <p> <strong> תְפוּקָה</strong> </p> <p> <img class="wp-image-238674" src="https://softoban.com/img/other/A8/how-to-auto-refresh-web-page-every-5-seconds-using-javascript-2.gif"></p> <h2 id="3"> <strong> שיטה 3: רענון אוטומטי של דף אינטרנט כל 5 שניות ב-JavaScript באמצעות שיטת setTimeout().</strong> </h2> <p> ה ' <strong> setTimeout()</strong> שיטת ” מפעילה פונקציה לאחר זמן מוגדר מוגדר. ניתן ליישם שיטה זו כדי לטעון מחדש דף אינטרנט לאחר פסק זמן מוגדר ספציפי.</p> <p> <strong> תחביר</strong> </p> setTimeout<span class="br0"> (</span> פונקציה, אלפיות שניות, par1, par2<span class="br0"> )</span> <p> בתחביר הנתון, ' <strong> פוּנקצִיָה</strong> ' מתייחס לפונקציה שיש לגשת אליה, ' <strong> אלפיות השנייה</strong> ' הוא מרווח הזמן הספציפי לביצוע, ו' <strong> זוג 1</strong> ', ' <strong> par2</strong> ' הם הפרמטרים הנוספים.</p> <h3> <strong> דוגמא</strong> </h3> <p> בתג הסקריפט של דף ה-HTML, החל את ' <strong> setTimeout()</strong> ' השיטה באופן כזה כאשר עוברות 5 שניות, השיטה location.reload() טוענת מחדש את דף האינטרנט:</p> <span class="sy0"> <</span> תַסרִיט<span class="sy0"> ></span> <br> <br> setTimeout<span class="br0"> (</span><span class="st0"> 'location.reload(true);'</span> ,<span class="nu0"> 5000</span><span class="br0"> )</span><span class="sy0"> ;</span> <br> <br> <span class="sy0"> </</span> תַסרִיט<span class="sy0"> ></span> <p> <strong> תְפוּקָה</strong> </p> <p> <img class="wp-image-238675" src="https://softoban.com/img/other/A8/how-to-auto-refresh-web-page-every-5-seconds-using-javascript-3.gif"></p> <p> דנו בכל השיטות הנוחות לרענון אוטומטי של דף אינטרנט כל 5 שניות באמצעות JavaScript.</p> <h2> <strong> סיכום</strong> </h2> <p> כדי לרענן אוטומטית דף אינטרנט כל 5 שניות באמצעות JavaScript, השתמש ב-' <strong> setInterval()</strong> ' ו' <strong> document.querySelector()</strong> ' שיטות לכוונון ערך הטיימר, ' <strong> לְרַעֲנֵן()</strong> שיטת ' לרענון דף אינטרנט, או ' <strong> setTimeout()</strong> ' שיטה להגדרת מגבלת רענון פסק זמן ספציפית של דף אינטרנט. מאמר זה הדגים את השיטות לרענון אוטומטי של דף אינטרנט כל 5 שניות באמצעות JavaScript.</p> </article> <div class="d-flex justify-content-center"> <script type="text/javascript">(function() { if (window.pluso)if (typeof window.pluso.start == "function") return; if (window.ifpluso==undefined) { window.ifpluso = 1; var d = document, s = d.createElement('script'), g = 'getElementsByTagName'; s.type = 'text/javascript'; s.charset='UTF-8'; s.async = true; s.src = ('https:' == window.location.protocol ? 'https' : 'http') + '://share.pluso.ru/pluso-like.js'; var h=d[g]('body')[0]; h.appendChild(s); }})();</script> <div class="pluso" data-background="transparent" data-options="big,round,line,horizontal,nocounter,theme=06" data-services="facebook,twitter,email,print"></div> </div> <div class="tag-widget post-tag-container mb-5 mt-5"> <div class="tagcloud"> <a href="/aher/" class="tag-cloud-link">אַחֵר</a> </div> </div> </div><!-- END--> </div> <div class="col-lg-4 sidebar ftco-animate bg-light pt-5"> <div class="sidebar-box ftco-animate"> <h3 class="sidebar-heading">קטגוריה</h3> <ul class="categories"> <li> <a href="/raspberry-pi/">פאי פטל</a> </li><li> <a href="/ethernet/">אתרנט</a> </li><li> <a href="/other/">אַחֵר</a> </li><li> <a href="/nano/">ננו</a> </li><li> <a href="/zoom/">תקריב</a> </li><li> <a href="/cinnamon/">קינמון</a> </li><li> <a href="/reviews/">ביקורות</a> </li><li> <a href="/zorinos/">Zorinos</a> </li><li> <a href="/radio/">רָדִיוֹ</a> </li><li> <a href="/minecraft/">מיינקראפט</a> </li><li> <a href="/ssh/">Ssh</a> </li><li> <a href="/openvas/">Openvas</a> </li><li> <a href="/compression/">דְחִיסָה</a> </li><li> <a href="/laravel/">Laravel</a> </li><li> <a href="/aircrack/">מגרש אוויר</a> </li><li> <a href="/office-productivity-software/">תוכנת פרודוקטיביות משרדית</a> </li><li> <a href="/boot/">מַגָף</a> </li><li> <a href="/system-calls/">שיחות מערכת</a> </li><li> <a href="/sysctl/">Sysctl</a> </li><li> <a href="/networking/">רשת</a> </li><li> <a href="/gpu/">Gpu</a> </li><li> <a href="/gimp/">גימפ</a> </li><li> <a href="/plex/">מקלעת</a> </li><li> <a href="/uefi/">Uefi</a> </li><li> <a href="/docker/">עגינה</a> </li><li> <a href="/firewall/">חומת אש</a> </li><li> <a href="/wireshark/">Wireshark</a> </li><li> <a href="/synology/">סינולוגיה</a> </li><li> <a href="/pdf/">Pdf</a> </li><li> <a href="/ethereum/">אתריום</a> </li><li> <a href="/parrot-os/">מערכת הפעלה תוכים</a> </li><li> <a href="/sublime/">נִשׂגָב</a> </li><li> <a href="/selinux/">Selinux</a> </li><li> <a href="/hyper-v/">Hyper-V</a> </li><li> <a href="/phone/">מכשיר טלפון</a> </li><li> <a href="/kodi/">קוד</a> </li><li> <a href="/gnome/">גַמָד</a> </li><li> <a href="/manjaro/">מַעֲדָן</a> </li><li> <a href="/mouse/">עכבר</a> </li><li> <a href="/nmap/">Nmap</a> </li><li> <a href="/metasploit/">Metasploit</a> </li><li> <a href="/torrent/">מַבּוּל</a> </li><li> <a href="/tablet/">לוּחַ</a> </li><li> <a href="/pycharm/">חרס</a> </li><li> <a href="/curl/">סִלְסוּל</a> </li><li> <a href="/kde/">איפה</a> </li><li> <a href="/gcc/">Gcc</a> </li><li> <a href="/fonts/">גופנים</a> </li><li> <a href="/ssl/">Ssl</a> </li><li> <a href="/nvidia/">Nvidia</a> </li><li> <a href="/images/">תמונות</a> </li><li> <a href="/usb/">יו אס בי</a> </li><li> <a href="/squid/">דיונון</a> </li><li> <a href="/mate/">בן זוג</a> </li><li> <a href="/vlc-media-player/">נגן מדיה Vlc</a> </li><li> <a href="/dns/">Dns</a> </li><li> <a href="/bitcoin/">ביטקוין</a> </li><li> <a href="/keyboard/">מקלדת</a> </li><li> <a href="/inkscape/">Inkscape</a> </li><li> <a href="/encryption/">הצפנה</a> </li><li> <a href="/fedora/">פדורה</a> </li><li> <a href="/owncloud/">Owncloud</a> </li><li> <a href="/scanner/">סוֹרֵק</a> </li><li> <a href="/atom/">אָטוֹם</a> </li><li> <a href="/red-hat/">כובע אדום</a> </li><li> <a href="/teamviewer/">Teamviewer</a> </li><li> <a href="/skype/">סקייפ</a> </li><li> <a href="/vpn/">Vpn</a> </li><li> <a href="/xfce/">Xfce</a> </li><li> <a href="/jupyter-notebook/">מחברת Jupyter</a> </li><li> <a href="/nfs/">Nfs</a> </li><li> <a href="/blog/">בלוג</a> </li><li> <a href="/lvm/">Lvm</a> </li><li> <a href="/suse/">Suse</a> </li><li> <a href="/media-players/">נגני מדיה</a> </li><li> <a href="/posix/">Posix</a> </li><li> <a href="/steam/">קִיטוֹר</a> </li><li> <a href="/jenkins/">ג'נקינס</a> </li><li> <a href="/power/">כּוֹחַ</a> </li><li> <a href="/oracle-linux/">אורקל לינוקס</a> </li><li> <a href="/netstat/">Netstat</a> </li><li> <a href="/kvm/">מ'ר</a> </li><li> <a href="/bluetooth/">בלוטות</a> </li><li> <a href="/ssd/">Ssd</a> </li><li> <a href="/grep/">אחיזה</a> </li><li> <a href="/gentoo/">ג'נטו</a> </li><li> <a href="/odyssey/">אודיסיאה</a> </li><li> <a href="/audio/">שֶׁמַע</a> </li><li> <a href="/cpu/">מעבד</a> </li><li> <a href="/tensorflow/">זרימת טנסור</a> </li><li> <a href="/autodesk/">Autodesk</a> </li><li> <a href="/lubuntu/">Lubuntu</a> </li><li> <a href="/llvm/">Llvm</a> </li><li> <a href="/windows/">חלונות</a> </li><li> <a href="/microsoft-edge/">Microsoft Edge (מורשת)</a> </li><li> <a href="/internet-explorer/">אינטרנט אקספלורר</a> </li><li> <a href="/office/">מִשׂרָד</a> </li><li> <a href="/aher/">אַחֵר</a> </li><li> <a href="/sqyyp/">סקייפ</a> </li><li> <a href="/p-y-ptl/">פאי פטל</a> </li><li> <a href="/mzlmt-yntrnt/">מצלמת אינטרנט</a> </li><li> <a href="/ngny-mdyh/">נגני מדיה</a> </li><li> <a href="/cpanel/">cPanel</a> </li><li> <a href="/h-prwqsy/">האפרוקסי</a> </li><li> <a href="/gamad/">גַמָד</a> </li><li> <a href="/magap/">מַגָף</a> </li><li> <a href="/nisgab/">נִשׂגָב</a> </li><li> <a href="/wbwntw-24-04-cat/">אובונטו 24.04</a> </li><li> <a href="/nextcloud/">nextcloud</a> </li><li> <a href="/ma-alah/">מַעֲלָה</a> </li><li> <a href="/h-brt-usb/">העברת usb</a> </li><li> <a href="/pdwrh/">פדורה</a> </li><li> <a href="/hp-lh-btwhh/">#הפעלה בטוחה</a> </li> </ul> </div> <div class="sidebar-box ftco-animate"> <h3 class="sidebar-heading">רשום פופולרי</h3> <div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/47/how-to-obtain-and-use-frost-walker-enchantment-in-minecraft-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lhsyg-wlhstms-b-frost-walker-enchantment-bmyynqr-pt">כיצד להשיג ולהשתמש ב-Frost Walker Enchantment במיינקראפט</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/48/windows-equivalent-of-export-command-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/windows-mqbylh-lpqwdt-yyzw">Windows מקבילה לפקודת ייצוא</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/14/how-to-use-chatgpt-folders-to-deal-conversations-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lhstms-btyqywt-chatgpt-kdy-lhtmwdd-m-syhwt">כיצד להשתמש בתיקיות ChatGPT כדי להתמודד עם שיחות?</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/4A/github-actions-in-ansible-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/p-wlwt-github-b-ansible">פעולות GitHub ב-Ansible</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/01/how-to-read-json-files-in-node-js-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lqrw-qbzy-json-b-node-js">כיצד לקרוא קבצי JSON ב-Node.js?</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/44/how-to-generate-a-docker-image-from-a-container-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lyzwr-tmwnt-docker-mmykl">כיצד ליצור תמונת Docker ממיכל</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/9A/min-and-max-in-c-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/min-wmqs-b-c">Min ומקס ב-C</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/EA/redis-getex-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/redis-getex">Redis GETEX</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/78/how-to-add-koya-bot-to-discord-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lhwsyp-qwyh-bwt-ldysqwrd">כיצד להוסיף קויה בוט לדיסקורד</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/9E/how-to-clear-dns-cache-on-iphone-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lnqwt-mtmwn-dns-b-yypwn">כיצד לנקות מטמון DNS באייפון</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/49/how-to-check-which-ubuntu-version-you-are-on-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lbdwq-b-yzw-grst-wbwntw-th-nmz">כיצד לבדוק באיזו גרסת אובונטו אתה נמצא</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/B5/how-to-update-a-single-package-with-apt-get-command-in-debian-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-l-dkn-hbylh-bwddt-m-command-apt-get-bdby-n">כיצד לעדכן חבילה בודדת עם Command apt-get בדביאן</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/A0/how-to-use-floor-function-in-php-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lhstms-bpwnqzyyt-floor-b-php">כיצד להשתמש בפונקציית floor() ב-PHP</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/25/how-to-generate-battery-report-on-windows-11-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lhpyq-dwh-swllh-b-windows-11">כיצד להפיק דוח סוללה ב-Windows 11</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/6C/how-to-add-remove-kernel-boot-parameters-arguments-and-grub-boot-entries-on-fedora-rhel-almalinux-rocky-linux-centos-stream-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lhwsyp-lhsyr-prmtrym-ty-wnym-sl-thwl-lybh-w-rky-thwl-grub-b-fedora-rhel-almalinux-rocky-linux-centos-stream">כיצד להוסיף/להסיר פרמטרים/טיעונים של אתחול ליבה וערכי אתחול GRUB ב-Fedora/RHEL/AlmaLinux/Rocky Linux/CentOS Stream</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/89/how-to-shut-down-or-restart-windows-system-using-powershell-or-command-prompt-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-lkbwt-w-lhp-yl-mhds-t-m-rkt-windows-b-mz-wt-powershell-w-swrt-hpqwdh">כיצד לכבות או להפעיל מחדש את מערכת Windows באמצעות PowerShell או שורת הפקודה</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/D1/how-to-fix-systemctl-status-showing-degraded-state-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/kyzd-ltqn-mzb-systemctl-hmzyg-mzb-pgwm">כיצד לתקן מצב systemctl המציג מצב פגום</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/B9/emacs-key-bindings-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/krykwt-mpth-sl-emacs">כריכות מפתח של Emacs</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/95/emacs-close-buffer-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/emacs-close-buffer">Emacs Close Buffer</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div><div class="block-21 mb-4 d-flex"> <a class="blog-img mr-4" style="background-image: url(https://softoban.com/img/other/34/sprintf-function-in-c-1.png);"></a> <div class="text"> <h3 class="heading"> <a href="/pwnqzyyt-sprintf-b-c">פונקציית sprintf ב-C</a> </h3> <div class="meta"> <div> <a href="/aher/"><span class="icon-chat"></span> אַחֵר</a> </div> </div> </div> </div> </div> </div> </div><!-- END COL --> </div> </section> </div><!-- END COLORLIB-MAIN --> </div><!-- END COLORLIB-PAGE --> <!-- loader --> <div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div> <script src="https://softoban.com/template/js/jquery.min.js"></script> <script src="https://softoban.com/template/js/jquery-migrate-3.0.1.min.js"></script> <script src="https://softoban.com/template/js/popper.min.js"></script> <script src="https://softoban.com/template/js/bootstrap.min.js"></script> <script src="https://softoban.com/template/js/jquery.easing.1.3.js"></script> <script src="https://softoban.com/template/js/jquery.waypoints.min.js"></script> <script src="https://softoban.com/template/js/jquery.stellar.min.js"></script> <script src="https://softoban.com/template/js/owl.carousel.min.js"></script> <script src="https://softoban.com/template/js/jquery.magnific-popup.min.js"></script> <script src="https://softoban.com/template/js/aos.js"></script> <script src="https://softoban.com/template/js/jquery.animateNumber.min.js"></script> <script src="https://softoban.com/template/js/scrollax.min.js"></script> <script src="https://softoban.com/template/js/main.js"></script> <script async="" defer="" src="//www.instagram.com/embed.js"></script> <script async="" src="https://platform.twitter.com/widgets.js"></script> <script> window.onload = function(){ for(i in document.images) { if(document.images[i].naturalWidth==0){ if(window.location.pathname.length > 1){ document.images[i].style="display:none" } else { document.images[i].src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=" } } } } $(document).ready(() => { $('nav').find('a').each(function(){ if($(this).attr('href') == window.location.pathname){ $(this).parent('li').addClass('active') } }) var wrapper = '<div class="embeded-video"></div>'; if($('iframe[width="560"]').length > 1){ $('.m_v').remove(); }else{ } $('iframe[src^="https://www.youtube.com/embed/"]').wrap(wrapper); let loc = window.location.pathname; if(loc == '/privacy-policy'){ $('div.embeded-video').remove(); $('blockquote').remove(); } }) </script> <script type="text/javascript" src="https://s.skimresources.com/js/192355X1670518.skimlinks.js"></script></body> </html>