Показать сообщение отдельно
  #1 (permalink)  
Старый 04.10.2011, 21:50
Интересующийся
Отправить личное сообщение для sedoyksa Посмотреть профиль Найти все сообщения от sedoyksa
 
Регистрация: 28.09.2011
Сообщений: 15

не вызывается jQuery
на странице log.php прописано в <head> <script src="http://code.jquery.com/jquery-latest.js"></script> но при вызове log.js firebug говорит что invalid regular expression flag c
http://www.suprofitweb.ru/google/log.js
Line 115 $.get(/google/check_log.php, {name: user, passassword}),

тоесть он не понимает что такое $.get хотя строка вызова\подключения прописана
подключен jquery же правильно?
файл php
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>форма для входа</title>
    <link href="style.css" rel="stylesheet" media="all" />
	<script type="text/javascript" src="js/jquery/1.6.2/jquery.min.js"></script>

	<script type="text/javascript" src="js/func.js"></script>
	<script type="text/javascript" src="js/jqueryInterface.js"></script>
	
	<script type="text/javascript" src="js/jquery-ui/js/jquery-ui-1.8.15.custom.min.js"></script>
	<link href="js/jquery-ui/development-bundle/themes/base/jquery.ui.all.css" rel="stylesheet">
	<script src="js/jquery-ui/development-bundle/external/jquery.bgiframe-2.1.2.js"></script>
	<script src="js/jquery-ui/development-bundle/ui/jquery.ui.core.js"></script>
	<script src="js/jquery-ui/development-bundle/ui/jquery.ui.widget.js"></script> 
	<script src="js/jquery-ui/development-bundle/ui/jquery.ui.mouse.js"></script>
	<script src="js/jquery-ui/development-bundle/ui/jquery.ui.draggable.js"></script>
	<script src="js/jquery-ui/development-bundle/ui/jquery.ui.position.js"></script>
	<script src="js/jquery-ui/development-bundle/ui/jquery.ui.resizable.js"></script>
	<script src="js/jquery-ui/development-bundle/ui/jquery.ui.dialog.js"></script>
	
	<script src="http://code.jquery.com/jquery-latest.js"></script>


вызов $.get
buttons: [{
			text: 'Войти',
			id: 'loginDo',
			formBind: true,
			handler : function() {Ext.Ajax.request({
                     		     url: '/google/log.php',
                       		     params: {user_login: loginForm.getForm().getValues().login,
                                     user_password: loginForm.getForm().getValues().password},
}),
user=loginForm.getForm().getValues().login,
password=loginForm.getForm().getValues().password,
$.get(/google/check_log.php, {name: "user", pass:"password"}),
Ext.Msg.show({
title: 'Milton',
msg: ,
});

},

                    
                }],


пробовал писать $.get(/google/check_log.php, {name: user, passassword}),
- та же ошибка

почему вылазит ошибка в firebug
Код:
invalid regular expression flag c
http://www.suprofitweb.ru/google/log.js
Line 115
Ответить с цитированием