Форум программистов, компьютерный форум, киберфорум
JavaScript для начинающих
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
0 / 0 / 0
Регистрация: 26.12.2020
Сообщений: 6

Не работают фильтры

08.11.2023, 14:46. Показов 361. Ответов 2

Студворк — интернет-сервис помощи студентам
Не работают функции, при нажатии на принять, ничего не происходит

PHP/HTML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="UTF-8">
      <title>Поиск недвижимости</title>
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css" />
      <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.js"></script>
      <script src="https://api-maps.yandex.ru/2.1/?apikey=***&lang=ru_RU" type="text/javascript"></script>
     <style>
          body {
        font-family: Arial, sans-serif;
        background-color: #f0f0f0;
        margin: 0;
        padding: 0;
        color: #333;
      }
 
      h1 {
        text-align: center;
        background-color: #ff0000;
        color: #fff;
        padding: 10px;
        margin: 0;
      }
 
      #property-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px;
      }
 
      .property-card {
        border: 1px solid #ccc;
        padding: 10px;
        width: 300px;
        margin: 10px;
        display: inline-block;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
 
      .property-card img {
        max-width: 100px;
        height: auto;
        cursor: pointer;
      }
 
      .property-card h2 {
        font-size: 1.2rem;
        margin: 0;
        color: #ff0000;
      }
 
      .property-card .property-address {
        font-size: 0.9rem;
      }
 
      .property-card p {
        font-size: 1rem;
        margin: 0;
        color: #333;
      }
 
      .property-card .property-details-button {
        background-color: #ff0000;
        color: #fff;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        margin-top: 10px;
      }
 
      .property-card .property-details-button:hover {
        background-color: #ff3333;
      }
 
      #pagination {
        text-align: center;
        margin-top: 10px;
      }
 
      #prev-page,
      #next-page {
        background-color: #ff0000;
        color: #fff;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
      }
 
      #prev-page:hover,
      #next-page:hover {
        background-color: #ff3333;
      }
 
      .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);
      }
 
      .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        border: 1px solid #ccc;
        max-width: 600px;
      }
 
      .modal-content h2 {
        font-size: 1.4rem;
        color: #ff0000;
      }
 
      .modal-content p {
        font-size: 1.2rem;
      }
 
      .property-photos img {
        cursor: pointer;
        max-width: 100px;
        height: auto;
      }
 
      .property-map {
        height: 300px;
      }
      }
    </style>
 
      <style>
       #filter-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin: 20px 0;
        }
 
        #property-type-filter {
          padding: 10px;
          border: 1px solid #ccc;
          border-radius: 5px;
          background-color: #fff;
        }
 
        #price-slider {
          flex: 1;
          padding: 10px;
          border: 1px solid #ccc;
          border-radius: 5px;
          background-color: #fff;
        }
 
        #filter-button {
          background-color: #ff0000;
          color: #fff;
          border: none;
          padding: 10px 20px;
          cursor: pointer;
          border-radius: 5px;
          font-weight: bold;
        }
 
        #filter-button:hover {
          background-color: #ff3333;
        }
 
        #price-range-label {
          font-weight: bold;
        }
 
        .property-card {
          border: 1px solid #ccc;
          padding: 10px;
          width: 200px;
          margin: 20px;
          display: inline-block;
          background-color: #fff;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        #filter-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 20px 0;
    }
      </style>
 
    </head>
    <body>
      <h1>Поиск недвижимости</h1>
 
      <div id="property-list"></div>
 
      <div id="pagination">
        <button id="prev-page" onclick="prevPage()">Предыдущая страница</button>
        <button id="next-page" onclick="nextPage()">Следующая страница</button>
      </div>
 
     <div id="property-list"></div>
  <div class="modal" id="property-modal">
    <div class="modal-content">
      <h2 id="property-title">Детали объекта</h2>
      <p id="property-details"></p>
      <div class="property-photos" id="property-photos">
        <!-- Photos will be displayed here -->
      </div>
      <div class="property-map" id="modalMap" style="height: 300px;"></div>
    </div>
  </div>
      
      
       <div id="price-filter">
      <div>
        <label for="price-slider"></label>
        <input type="text" id="price-slider" placeholder="Цена">
        <button id="filter-button" onclick="filterProperties()">Принять</button>
      </div>
      <div id="price-range-label">
        <span id="min-price-label"></span>  <span id="max-price-label"></span>
      </div>
    </div>
      
     
      <script>
      
      
    var priceSlider = document.getElementById('price-slider');
    var minPriceLabel = document.getElementById('min-price-label');
    var maxPriceLabel = document.getElementById('max-price-label');
 
 
    var priceRange = {
      min: 10000,
      max: 10000000,
    };
 
    noUiSlider.create(priceSlider, {
      start: [priceRange.min, priceRange.max],
      connect: true,
      range: {
        'min': priceRange.min,
        'max': priceRange.max
      },
      step: 1000, 
      format: {
        to: function (value) {
          return parseInt(value);
        },
        from: function (value) {
          return parseInt(value);
        }
      }
    });
 
    minPriceLabel.textContent = priceRange.min;
    maxPriceLabel.textContent = priceRange.max;
 
      function filterProperties() {
      var selectedType = document.getElementById("property-type-filter").value;
      var priceSlider = document.getElementById('price-slider');
 
 
      var priceRange = priceSlider.noUiSlider.get();
      var minPrice = parseFloat(priceRange[0]);
      var maxPrice = parseFloat(priceRange[1]);
 
 
      minPriceLabel.textContent = minPrice;
      maxPriceLabel.textContent = maxPrice;
 
      var propertyList = document.getElementById("property-list");
      propertyList.innerHTML = "";
 
      for (var i = 0; i < offers.length; i++) {
        var offer = offers[i];
        var typeElement = offer.querySelector("type");
        var priceElement = offer.querySelector("price");
        
        var price = parseFloat(priceElement.textContent);
 
        if (
          (selectedType === "all" || typeElement.textContent.toLowerCase() === selectedType) &&
          price >= minPrice && price <= maxPrice
        ) {
          var propertyCard = createPropertyCard(offer, i);
          propertyList.appendChild(propertyCard);
        }
      }
 
    }
     
     </script>
  <script>
  var coordinates = [55.755814, 37.617635];
  var address = "Moscow, Russia";
 
  if (coordinates) {
    var mapContainer = document.getElementById("modalMap");
 
    ymaps.ready(function () {
      var map = new ymaps.Map(mapContainer, {
        center: coordinates,
        zoom: 16,
      });
 
      var placemark = new ymaps.Placemark(coordinates, {
        hintContent: address,
      });
 
      map.geoObjects.add(placemark);
    });
  } else {
    console.error("Coordinates are missing or invalid.");
  }
 
</script>
      <script>
        var xmlFeedUrl = "здесь ссылка на фид";
        var currentPage = 1;
        var itemsPerPage = 10;
        var totalItems;
        var offers = [];
 
        fetch(xmlFeedUrl)
          .then(function(response) {
            if (!response.ok) {
              throw new Error("Ошибка при загрузке XML-фида: " + response.status);
            }
            return response.text();
          })
          .then(function(xmlText) {
            var parser = new DOMParser();
            var xmlDoc = parser.parseFromString(xmlText, "text/xml");
            offers = Array.from(xmlDoc.querySelectorAll("offer"));
            totalItems = offers.length;
 
            updatePropertyList();
          })
          .catch(function(error) {
            console.error(error.message);
          });
 
        function updatePropertyList() {
          var propertyList = document.getElementById("property-list");
          propertyList.innerHTML = "";
 
          var start = (currentPage - 1) * itemsPerPage;
          var end = Math.min(start + itemsPerPage, totalItems);
 
          for (var i = start; i < end; i++) {
            var offer = offers[i];
            var typeElement = offer.querySelector("type");
            var priceElement = offer.querySelector("price");
            var addressElement = offer.querySelector("location");
            var dateElement = offer.querySelector("creation-date");
            var photos = Array.from(offer.querySelectorAll("image"));
            var coordinates = offer.querySelector("coordinates") ? offer.querySelector("coordinates").textContent.split(" ") : null;
 
            if (typeElement && priceElement && addressElement && dateElement) {
              var type = typeElement.textContent;
              var price = parseFloat(priceElement.textContent);
              var address = addressElement.textContent;
              var date = dateElement.textContent;
 
              var propertyCard = document.createElement("div");
              propertyCard.classList.add("property-card");
 
              var photoHtml = photos.length > 0 ? `<img src="${photos[0].textContent}" alt="Property Photo">` : '<img src="no-image.jpg" alt="No Photo">';
              propertyCard.innerHTML = `
                <h2>${type}</h2>
                ${photoHtml}
                <p class="property-address">${address}</p>
                <p>Цена: ${price} рублей</p>
                <button class="property-details-button" data-offer-index="${i}">Подробнее</button>
              `;
 
              propertyList.appendChild(propertyCard);
 
              if (coordinates) {
                var mapId = `map-${i}`;
                var mapContainer = document.createElement("div");
                mapContainer.id = mapId;
                mapContainer.style.width = "100%";
                mapContainer.style.height = "100px";
                propertyCard.appendChild(mapContainer);
 
                ymaps.ready(function() {
                  var map = new ymaps.Map(mapId, {
                    center: coordinates,
                    zoom: 10,
                  });
 
                  var placemark = new ymaps.Placemark(coordinates);
                  map.geoObjects.add(placemark);
                });
              }
            }
          }
 
          updatePagination();
          initializePhotoGalleries();
        }
 
        function initializePhotoGalleries() {
          var buttons = document.querySelectorAll(".property-details-button");
          buttons.forEach(function(button) {
            button.addEventListener("click", function() {
              var offerIndex = button.getAttribute("data-offer-index");
              showDetails(offerIndex);
            });
          });
        }
 
        function updatePagination() {
          var prevButton = document.getElementById("prev-page");
          var nextButton = document.getElementById("next-page");
 
          prevButton.disabled = currentPage === 1;
          nextButton.disabled = currentPage * itemsPerPage >= totalItems;
        }
 
        function prevPage() {
          if (currentPage > 1) {
            currentPage--;
            updatePropertyList();
          }
        }
 
        function nextPage() {
          if (currentPage * itemsPerPage < totalItems) {
            currentPage++;
            updatePropertyList();
          }
        }
 
        // Закрытие модального окна при клике вне его области
        window.onclick = function(event) {
          var modal = document.getElementById("property-modal");
          if (event.target === modal) {
            modal.style.display = "none";
          }
        };
 
        function initializeMap(coordinates, mapContainer) {
    ymaps.ready(function () {
      var map = new ymaps.Map(mapContainer, {
        center: coordinates,
        zoom: 16,
      });
 
      var placemark = new ymaps.Placemark(coordinates, {
        hintContent: "Property Location",
      });
 
      map.geoObjects.add(placemark);
    });
  }
 
        // Function to display property details when the "More Details" button is clicked
        function showDetails(offerIndex) {
      var modal = document.getElementById("property-modal");
      var modalTitle = document.getElementById("property-title");
      var modalDetails = document.getElementById("property-details");
      var modalPhotos = document.getElementById("property-photos");
      var modalMap = document.getElementById("modalMap");
 
      var offer = offers[offerIndex];
      var typeElement = offer.querySelector("type");
      var priceElement = offer.querySelector("price");
      var addressElement = offer.querySelector("location");
      var photos = Array.from(offer.querySelectorAll("image"));
      var coordinates = offer.querySelector("coordinates") ? offer.querySelector("coordinates").textContent.split(" ") : null;
 
      if (typeElement && priceElement && addressElement) {
        var type = typeElement.textContent;
        var price = parseFloat(priceElement.textContent);
        var address = formatAddress(addressElement.textContent);
        var formattedPrice = new Intl.NumberFormat("ru-RU").format(price);
 
        modalTitle.innerText = type;
        modalDetails.innerHTML = `Цена: ${formattedPrice} рублей<br>Адрес: ${address}`;
 
        modalPhotos.innerHTML = getPhotoGalleryHtml(photos);
 
        if (coordinates) {
          modalMap.innerHTML = ""; // Clear the previous map if any
          var mapContainer = document.createElement("div");
          modalMap.appendChild(mapContainer);
 
          ymaps.ready(function () {
            var map = new ymaps.Map(mapContainer, {
              center: coordinates,
              zoom: 16,
            });
 
            var placemark = new ymaps.Placemark(coordinates, {
              hintContent: address,
            });
 
            map.geoObjects.add(placemark);
          });
        }
      }
 
      modal.style.display = "block";
    }
    
 
    function formatAddress(address) {
      return address.trim();
    }
 
        function getPhotoGalleryHtml(photos) {
          if (photos.length === 0) {
            return '<p>No Photos Available</p>';
          }
 
          var photoHtml = photos.map(function(photo) {
            return `<a class="photo-gallery" data-fancybox="property-gallery" href="${photo.textContent}">
              <img src="${photo.textContent}" alt="Property Photo" width="100">
            </a>`;
          }).join("");
 
          return photoHtml;
        }
        
        function showDetails(offerIndex) {
      var modal = document.getElementById("property-modal");
      var modalTitle = document.getElementById("property-title");
      var modalDetails = document.getElementById("property-details");
      var modalPhotos = document.getElementById("property-photos");
      var modalMap = document.getElementById("modalMap");
 
      var offer = offers[offerIndex];
      var typeElement = offer.querySelector("type");
      var priceElement = offer.querySelector("price");
      var addressElement = offer.querySelector("location");
      var dateElement = offer.querySelector("creation-date");
      var photos = Array.from(offer.querySelectorAll("image"));
      var coordinates = offer.querySelector("coordinates")
      
        ? offer.querySelector("coordinates").textContent.split(" ")
        : null;
 
      if (typeElement && priceElement && addressElement && dateElement) {
        var type = typeElement.textContent;
        var price = parseFloat(priceElement.textContent);
        var address = formatAddress(addressElement.textContent);
        var date = formatDate(new Date(dateElement.textContent));
 
        var formattedPrice = new Intl.NumberFormat("ru-RU").format(price);
        modalTitle.innerText = type;
        modalDetails.innerHTML = `Цена: ${formattedPrice} рублей<br>Адрес: ${address}<br>Дата публикации: ${date}`;
        modalPhotos.innerHTML = getPhotoGalleryHtml(photos);
 
        if (coordinates) {
          ymaps.ready(function () {
            var map = new ymaps.Map(modalMap, {
              center: coordinates,
              zoom: 10,
            });
 
            var placemark = new ymaps.Placemark(coordinates);
            map.geoObjects.add(placemark);
          });
        }
      }
 
      modal.style.display = "block";
    }
 
 
 
    function formatDate(date) {
      var options = { year: "numeric", month: "long", day: "numeric" };
      return date.toLocaleDateString("ru-RU", options);
    }
 
    function formatAddress(address) {
      // Split the address by commas and remove extra spaces
      const parts = address.split(',').map(part => part.trim());
 
      // Filter out empty parts and join with commas
      const filteredParts = parts.filter(part => part !== "");
      return filteredParts.join(', ');
    }
 
      </script>
      
      <select id="property-type-filter">
      <option value="all">Вся недвижимость</option>
      <option value="sell">Продажа</option>
      <option value="rentals">Аренда</option>
      <option value="date">Дата публикации</option>
     </select>
       <button id="filter-button" onclick="filterProperties()">Принять</button>
       
      <script>
 
    priceSlider.noUiSlider.on('update', function (values, handle) {
  if (handle === 0) {
    minPriceLabel.textContent = parseInt(values[handle]);
  } else {
    maxPriceLabel.textContent = parseInt(values[handle]);
  }
});
 
      function filterProperties() {
  var selectedType = document.getElementById("property-type-filter").value;
  var priceRange = priceSlider.noUiSlider.get();
  var minPrice = parseFloat(priceRange[0]);
  var maxPrice = parseFloat(priceRange[1]);
 
  var propertyList = document.getElementById("property-list");
  propertyList.innerHTML = "";
 
  for (var i = 0; i < offers.length; i++) {
    var offer = offers[i];
    var typeElement = offer.querySelector("type");
    var priceElement = offer.querySelector("price");
    var price = parseFloat(priceElement.textContent);
 
    if (
      (selectedType === "all" || typeElement.textContent.toLowerCase() === selectedType) &&
      price >= minPrice && price <= maxPrice
    ) {
      var propertyCard = createPropertyCard(offer, i);
      propertyList.appendChild(propertyCard);
    }
  }
}
 
 
    // Function to create a property card with a map
     function createPropertyCard(offer, index) {
      var typeElement = offer.querySelector("type");
      var priceElement = offer.querySelector("price");
      var addressElement = offer.querySelector("location");
      var photos = Array.from(offer.querySelectorAll("image"));
      var coordinates = offer.querySelector("coordinates") ? offer.querySelector("coordinates").textContent.split(" ") : null;
 
      var type = typeElement.textContent;
      var price = parseFloat(priceElement.textContent);
      var address = formatAddress(addressElement.textContent);
      var formattedPrice = new Intl.NumberFormat("ru-RU").format(price);
 
      var propertyCard = document.createElement("div");
      propertyCard.classList.add("property-card");
 
      var photoHtml = photos.length > 0 ? `<img src="${photos[0].textContent}" alt="Property Photo">` : '<img src="no-image.jpg" alt="No Photo">';
      propertyCard.innerHTML = `
        <h2>${type}</h2>
        ${photoHtml}
        <p class="property-address">${address}</p>
        <p>Цена: ${formattedPrice} рублей</p>
        <button class="property-details-button" data-offer-index="${index}">Подробнее</button>
      `;
 
      // Add an event listener to the "More Details" button
      var detailsButton = propertyCard.querySelector(".property-details-button");
      detailsButton.addEventListener("click", function() {
        showDetails(index);
      });
 
      return propertyCard;
    }
 
      </script>
    </body>
    </html>
0
cpp_developer
Эксперт
20123 / 5690 / 1417
Регистрация: 09.04.2010
Сообщений: 22,546
Блог
08.11.2023, 14:46
Ответы с готовыми решениями:

Почему не работают фильтры?
&lt;div class=&quot;col-md-12&quot;&gt; &lt;div class=&quot;card mt-3&quot;&gt; &lt;div class=&quot;card-header&quot;&gt; ...

подчиненная форма - не работают фильтры
создал подчиненную табличную форму1 на основе запроса1: - в таблице формы, данные выводятся без фильтрации(запрос1) - и нет списков для...

Не работают фильтры по полям со списком!
Всем добрый день! Такая проблема: была БД в 2003 access: таблица 1-шт, формы 2-шт: ленточная и столбец, 5 шт полей со списками для...

2
250 / 184 / 58
Регистрация: 12.03.2021
Сообщений: 1,043
08.11.2023, 15:14
как вариант, для начала стоит отделить js от верстки.
потом можно открыть консоль и посмотреть, какие там ошибки.
потом выложить проблемный кусок, а не 700 строк
0
1306 / 781 / 190
Регистрация: 19.09.2020
Сообщений: 1,993
08.11.2023, 15:45
700 строк кода и фраза "не работает, чините как хотите"... - лихо!

Если хошь, чтобы помогли надо как-то конкретнее и лаконичнее делать, ага?
1
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
raxper
Эксперт
30234 / 6612 / 1498
Регистрация: 28.12.2010
Сообщений: 21,154
Блог
08.11.2023, 15:45
Помогаю со студенческими работами здесь

После добавления данных в таблицу не работают фильтры
Если сначала применять фильтры над уже существующими данными, все в порядке. Добавляют новую запись, и фильтры не применяются.

Не работают фильтры Where-Object в конвейере при передаче объектов для архиватора
Всем привет! Возникла проблема и все ума не приложу в чем загвоздка. Требуется отфильтровать файлы в папке и передать их архиватору...

Подчиненная форма в виде таблицы. При печати таблица печатается полностью, фильтры не работают
Хочу: таблицу и разные кнопочки управления. В режиме Таблицы у формы пропадают заголовок и примечание, поэтому пришлось делать подчиненную...

VBA Excel автофильтр: вместо "фильтры по дате" предлагается "текстовые фильтры"
Доброго времени суток, уважаемые форумчане! Пожалуйста, подскажите решение следующей дилеммы: С помощью VBA осуществляется перенос дат...

Не работают задние USB а передние работают как по маслу в чем дело.
Здравствуйте.Включил комп и заметил что не работает принтер подумал что отключил от питания а оказалось что не работают задние usb,передние...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
Новые блоги и статьи
http://iceja.net/ математические сервисы
iceja 20.01.2026
Обновила свой сайт http:/ / iceja. net/ , приделала Fast Fourier Transform экстраполяцию сигналов. Однако предсказывает далеко не каждый сигнал (см ограничения http:/ / iceja. net/ fourier/ docs ). Также. . .
http://iceja.net/ сервер решения полиномов
iceja 18.01.2026
Выкатила http:/ / iceja. net/ сервер решения полиномов (находит действительные корни полиномов методом Штурма). На сайте документация по API, но скажу прямо VPS слабенький и 200 000 полиномов. . .
Расчёт переходных процессов в цепи постоянного тока
igorrr37 16.01.2026
/ * Дана цепь постоянного тока с R, L, C, k(ключ), U, E, J. Программа составляет систему уравнений по 1 и 2 законам Кирхгофа, решает её и находит переходные токи и напряжения на элементах схемы. . . .
Восстановить юзерскрипты Greasemonkey из бэкапа браузера
damix 15.01.2026
Если восстановить из бэкапа профиль Firefox после переустановки винды, то список юзерскриптов в Greasemonkey будет пустым. Но восстановить их можно так. Для этого понадобится консольная утилита. . .
Сукцессия микоризы: основная теория в виде двух уравнений.
anaschu 11.01.2026
https:/ / rutube. ru/ video/ 7a537f578d808e67a3c6fd818a44a5c4/
WordPad для Windows 11
Jel 10.01.2026
WordPad для Windows 11 — это приложение, которое восстанавливает классический текстовый редактор WordPad в операционной системе Windows 11. После того как Microsoft исключила WordPad из. . .
Classic Notepad for Windows 11
Jel 10.01.2026
Old Classic Notepad for Windows 11 Приложение для Windows 11, позволяющее пользователям вернуть классическую версию текстового редактора «Блокнот» из Windows 10. Программа предоставляет более. . .
Почему дизайн решает?
Neotwalker 09.01.2026
В современном мире, где конкуренция за внимание потребителя достигла пика, дизайн становится мощным инструментом для успеха бренда. Это не просто красивый внешний вид продукта или сайта — это. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru