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

Не подключается js файл

10.07.2018, 22:04. Показов 1204. Ответов 2
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Доброго времени суток, друзья. Изучаю как создавать сайты на одном видео блоге, но внезапно всплыла одна ошибка из-за которой не могу двигаться дальше. После обновлением страницы браузер перестал видеть все функции на javascript, хоть ничего нового в этой сфере и не добавлял и подключение к этому скрипту в index файле есть:
HTML5
1
<script type="text/javascript" src="js/shop-script.js"></script>
0
Лучшие ответы (1)
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
10.07.2018, 22:04
Ответы с готовыми решениями:

Не подключается cs файл
Добрый день Не подключается cs файл. Имеем test.aspx &lt;%@ Page Language=&quot;C#&quot;...

Не подключается файл
Привет.Не могу понять, уже 20 минут втыкаю и все бесполезно. У меня есть скрипт, функция которого,...

Не подключается файл
Здравствуйте! Не подключается файл libs.h в wxDev C++. Подскажите пожалуйста что делать? Почему не...

Не подключается файл
На работе сборка Open Server под Windows все работает. Дома под Debian тот же скрипт выдает...

2
0 / 0 / 0
Регистрация: 10.07.2018
Сообщений: 6
10.07.2018, 22:44  [ТС] 2
не удается подключить js к php, браузер после обновления перестал видеть функции из js


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
<?php
 
include("include/db_conect.php");
 
$sorting = $_GET["sort"];
 
switch ($sorting) {
  case 'price-asc';
  $sorting = 'price ASC';
  $sort_name = 'От дешевых к дорогим';
  break;
 
  case 'prise-desc';
  $sorting = 'price DESC';
  $sort_name = 'От дорогих к дешевым';
  break;
 
  case 'popular';
  $sorting = 'count DESC';
  $sort_name = 'Популярное';
  break;
 
  case 'news';
  $sorting = 'datetime DESC';
  $sort_name = 'Новинки';
  break;
 
  case 'brand';
  $sorting = 'brand';
  $sort_name = 'От А до Я';
  break;
 
default:
$sorting = 'products_id DESC';
$sort_name = 'Нет сортировки';
break;
}
 ?>
<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=window-1251" />
    <link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/style2.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
 <script type="text/javascript" src="js/jcarousellite_1.0.1.js"></script>
<script type="text/javascript" src="js/shop-script.js"></script>
<script type="text/javascript" src="js/jquery.cookie.min.js"></script>
    <title>Интернет магазин цифровой техники</title>
  </head>
 
<body>
<div id="block-body">
<?php
include("include/block-header.php")?>
<div id="block-right">
<?php
include("include/block-category.php")?>
<?php
include("include/block-parameter.php")?>
<?php
include("include/block-news.php")?>
</div>
<div id="block-content">
<div id="block-sorting">
<p id="nav-breadcrumbs"><a href="index.php">Главная страница</a> \<span>Все товары</span></p>
<ul id="options-list">
<li>Вид:</li>
<li><img id="style-grid"src="https://www.cyberforum.ru/images/icon-grid.png"</li>
<li><img id="style-list"src="https://www.cyberforum.ru/images/icon-list.png"</li>
<li>Сортировка</li>
<li><a id="select-sort"><?php echo $sort_name; ?></a>
<ul id="sorting-list">
<li><a href="index.php?sort=price-asc">От дешевых к дорогим</a></li>
<li><a href="index.php?sort=price-desc">От дорогих к дешевым</a></li>
<li><a href="index.php?sort=popular">Популярные</a></li>
<li><a href="index.php?sort=news">Новинки</a></li>
<li><a href="index.php?sort=brand">От А до Я</a></li>
</ul>
</li>
</ul>
</div>
 
<!-- /*вариант 1*/ -->
 
<ul id="block-tovar-grid">
 
<?php
 
  $result =  mysqli_query($link, "SELECT * FROM  table_products where visible='1' ORDER BY $sorting");
                if(mysqli_num_rows($result) > 0) {
                    $row = mysqli_fetch_array($result);
                    do {
 
if ($row["image"] != "" && file_exists("./uploads_images/".$row["image"]))
                           {
                           $img_path = './uploads_images/'.$row["image"];
                           $max_width = 200;
                           $max_height = 200;
                           list($width, $height) = getimagesize($img_path);
                           $ratioh = $max_height/$height;
                           $ratiow = $max_width/$width;
                           $ratio = min($ratioh, $ratiow);
                           $width = intval($ratio*$width);
                           $height = intval($ratio*$height);
                           }else
                           {
                           $img_path = "https://www.cyberforum.ru/images/no_images.png";
                           $width = 110;
                           $height = 200;}
 
                        echo('
                        <li>
<div class="block-images-grid">
<img src ="'.$img_path.'" width="'.$width.'" height='.$height.' >
</div>
<p class="style-title-grid"><a href="">'.$row["title"].'</a></p>
<ul class="reviews-and-counts-grid">
<li><img src="https://www.cyberforum.ru/images/eye-icon.png"><p>0</p></li>
<li><img src="https://www.cyberforum.ru/images/comment-icon.png"><p>0</p></li>
</ul>
<a class="add-card-style-grid"></a>
<p class="style-price-grid"><strong>'.$row["price"].'</strong> грн. </p>
<div class="mini-features">'.$row["mini_features"].'</div>
                                                </li>
                        ');
                    }
                    while ($row = mysqli_fetch_array($result));
                }
            ?>
 
</ul>
 
<!-- /*вариант 2*/ -->
 
<ul id="block-tovar-list">
 
<?php
 
  $result =  mysqli_query($link, "SELECT * FROM  table_products where visible='1' ORDER BY $sorting");
                if(mysqli_num_rows($result) > 0) {
                    $row = mysqli_fetch_array($result);
                    do {
 
if ($row["image"] != "" && file_exists("./uploads_images/".$row["image"]))
                           {
                           $img_path = './uploads_images/'.$row["image"];
                           $max_width = 150;
                           $max_height = 150;
                           list($width, $height) = getimagesize($img_path);
                           $ratioh = $max_height/$height;
                           $ratiow = $max_width/$width;
                           $ratio = min($ratioh, $ratiow);
                           $width = intval($ratio*$width);
                           $height = intval($ratio*$height);
                           }else
                           {
                           $img_path = "https://www.cyberforum.ru/images/noimages80x70.png";
                           $width = 80;
                           $height = 70;}
 
                        echo'
                        <li>
<div class="block-images-list">
<img src ="'.$img_path.'" width="'.$width.'" height='.$height.' >
</div>
 
<ul class="reviews-and-counts-list">
<li><img src="https://www.cyberforum.ru/images/eye-icon.png"><p>0</p></li>
<li><img src="https://www.cyberforum.ru/images/comment-icon.png"><p>0</p></li>
</ul>
 
<p class="style-title-list"><a href="">'.$row["title"].'</a></p>
 
<a class="add-card-style-list"></a>
<p class="style-price-list"><strong>'.$row["price"].'</strong> грн. </p>
<div class="style-text-list">'.$row["mini_description"].'</div>
                                                </li>
                        ';
                    }
                    while ($row = mysqli_fetch_array($result));
                }
            ?>
 
</ul>
</div>
<?php
include("include/block-footer.php")?>
</div>
</body>
</html>


Javascript
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
$(document).ready(function() {
 
   $("#newsticker").jCarouselLite({
  vertical: true,
  hoverPause:true,
  btnPrev: "#news_prev",
  btnNext: "#news_next",
  visible: 3,
  auto:2000,
  speed:500
 });
 
//вид
 
loadcart();
 
$("#style-grid").click(function () {
 
  $("#block-tovar-grid").show();
  $("#block-tovar-list").hide();
 
  $("#style-grid").attr("src","https://www.cyberforum.ru/images/icon-grid-active.png");
  $("#style-list").attr("src","https://www.cyberforum.ru/images/icon-list.png");
 
  $.cookie('select_style', 'grid');
 
});
 
 
$("#style-list").click(function () {
 
  $("#block-tovar-grid").hide();
  $("#block-tovar-list").show();
 
 
  $("#style-list").attr("src","https://www.cyberforum.ru/images/icon-list-active.png");
  $("#style-grid").attr("src","https://www.cyberforum.ru/images/icon-grid.png");
 
    $.cookie('select_style', 'list');
});
 
if ($.cookie('select_style', 'list') == 'grid')
{$("#block-tovar-grid").show();
$("#block-tovar-list").hide();
 
$("#style-grid").attr("src","https://www.cyberforum.ru/images/icon-grid-active.png");
$("#style-list").attr("src","https://www.cyberforum.ru/images/icon-list.png");
}
else {  $("#block-tovar-grid").hide();
  $("#block-tovar-list").show();
 
 
  $("#style-list").attr("src","https://www.cyberforum.ru/images/icon-list-active.png");
  $("#style-list").attr("src","https://www.cyberforum.ru/images/icon-grid.png");
}
 
//сортировка
 
$("#select-sort").click(function(){
$("#sorting-list").slideToggle(200);
 
});
 
выпадающий список
 
$('#block-category > ul >li > a').click(function () {
 
  if($(this).attr('class') != 'active') {
 
    $('#block-category>ul>li>ul').slideUp(400);
    $(this).next().slideToggle(400);
 
          $('#block-category > ul > li > a').removeClass('active');
          $(this).addclass('active');
          $.cookie('select_cat', $(this).attr('id'));
  } else {
 
          $('#block-category > ul > li > a').removeClass('active');
          $('#block-category > ul > li > ul').slideUp(400);
          $.cookie('select_cat', '');
  }
})
 
if ($.cookie('select_cat') !== '') {
  $('#block-category > ul > li > #'+ $.cookie('select_cat')).addclass('active').next().show();
}
 
 });
0
249 / 162 / 68
Регистрация: 10.12.2017
Сообщений: 558
11.07.2018, 00:10 3
Лучший ответ Сообщение было отмечено DanMozgovoy как решение

Решение

откройте консоль разработчика в браузере, смотрите ошибки
1
11.07.2018, 00:10
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
11.07.2018, 00:10
Помогаю со студенческими работами здесь

Не подключается файл - файл не найден
Warning: require_once(/func/connect.php) : failed to open stream: No such file or directory in...

Не подключается файл (Borland)
//--------------------------------------------------------------------------- #include &lt;vcl.h&gt;...

Не подключается файл ресурса...
Всем привет! Пишу программу в CodeGear RAD Studio 2007, использую файл ресурса для хранения...

Не подключается js-файл в gulp
Привет! Несколько дней назад стал изучать вёрстку bootstrap 4 пользуясь gulp. С бутсрапом всё...

Не подключается второй файл
Всем доброго дня я учусь верстать на php Я не понимаю в чем ошибка Вот index.php к нему...

Не подключается заголовочный файл
Здравствуйте. Создал свой .h файл. Подключил с основной программе,ошибок нет. Но при компиляции...


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

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru