Jump to content
  • 0

Проблема с работой JavaScript


Alex&R
 Share

Question

Есть страница index.php в нее импортирована страница reestr.php с помощью скрипта <?php require('forms/reestr.php');?>. На странице reestr.php должен отображаться календарь, скрипт которого лежит js/calendar/calendar.js. Как правильно прописать путь к скрипту календаря в данной ситуации?

Пробовал через страницу reestr.php:

<html>
<head>
<script language="JavaScript" src="js/calendar/calendar.js"></script>
</head>
<body>
<form enctype="text/plain" name="reserve">
<input type="text" name="data">
<script language="JavaScript">
new tcal ({
// form name
'formname': 'reserve',
// input name
'controlname': 'data'
});
</script>
</form>
</body>
</html>

Но увы, ничего не работает.

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

1. Где доктайп?

2. langauage="JavaScript" заменить на type="text/javascript".

3. Проверьте, инклудится ли файл вообще - это можно сделать фаербагом, например. А то он, может, нормально инклудится, а ошибка в другом.

4. Добавьте тег <base> и попробуйте в src указать путь от корня (src="/js/calendar/calendar.js")

Link to comment
Share on other sites

  • 0

Я так понимаю, это все нужно проделать над reestr.php. Если да, то ничего не выходит. Сама иконка, при нажатии на которою разворачивается календарь, отображается, но сам скрипт не выполняется. Скрипт точно рабочий, проверено.

Пункт 1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//UKR" "http://www.w3.org/TR/html4/strict.dtd">.

Пункт 2. <script type="text/javascript" src="http://mysite.com/js/calendar/calendar.js"></script>

Пункт 3. Firebug установил, навел на объект который меня интересует, показало это

<img alt="Open Calendar" class="tcalIcon" onclick="A_TCALS['0'].f_toggle()" id="tcalico_0" src="http://mysite.com/js/calendar/img/cal.gif">

Пункт 4. <base href="http://mysite.com/js/calendar">

Edited by Alex&R
Link to comment
Share on other sites

  • 0

Сайт размещен на локальном сервере. А страница на которой должен отображаться скрипт находится в корне www.mysite.com/index.php, а сам скрипт вставлен в файл по адресу

www.mysite.com/forms/reestr.php

. Данный файл (reestr.php) импортирован с помочу php

<?php require('forms/reestr.php');?> на страницу index.php. Скрипт календаря находится по адресу

http://mysite.com/js/calendar.js

Если поразмышлять, скрипт фактически находится на странице reestr.php, но должен отображаться на index.php :)

Edited by Alex&R
Link to comment
Share on other sites

  • 0

Методом проб и ошибок понял такую вещь. Скрипт не хочет работать поскольку страница index имеет расширение php. Если сохранить в формате html, то все работает. Но, тогда не работает функция <?php require('forms/reestr.php');?>. Может это Вам что нить подскажет?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy