我有一个带有Jquery函数的js文件,现在我必须在文档就绪时调用该函数,在另一个PHP文件中,我尝试了下面的代码,它为PHP文件工作,但是对于JS文件,它表示$.test is not a function。
此错误消息的jq.js文件为$.test is not a function。
$(document).ready(function(){
$.test();
$.test = function(){
alert('HELLO WORLD');
}
});
add.php文件用于此操作有效。
.....SOME PHP
作为开场白,我没有做太多的web开发。我有一个methodExec.php文件和一个main.js文件。在我的PHP文件中,我创建了一个包含来自数据库的行的列表,并尝试在我的.js文件中使用该列表。如果我在类的外部声明数组,我可以访问它,但在收集数据库中的行之后,我不确定如何引用它。
methodExec.php
<?php
require_once 'includes/constants.php';
$methodExecVar = new methodExec();
class methodExec {
private $conn;
public
我有一个名为graph_poids2的JS文件,这个函数有一个名为dayr的参数
文件graph.js
$(function graph_poids2(dayr) {
alert(dayr);
chaine1='../graph/data_today_poids2.php?day=';
alert(chaine1.concat(dayr));
$.getJSON(chaine1.concat(dayr), function (data) { // on récupère les data du json.
etc..
}
在我的主PHP文件中,在退出JS
我有一个名为function.js的文件,其中包含我的应用程序的所有jQuery,如下所示
$(document).ready(function(){
insert_initial(); //first time to the page, insert into cart and set the subtotal originally
function update_gallery(product_id){
...
}
function update_prices(product_selector){
...
抱歉,上帝,但是..。
我有php、file,在这个php中我设置了语言,并包括必要的lang文件:
...
if ($lan=='ge') {$_SESSION['lang']='german';...}
if ($lan=='en') {$_SESSION['lang']='english'; ....}
}
if ($_SESSION['lang']=='english'){
include ..english
}
我目前正在使用ecmascript 2015重写我的一个项目。我有一个module.js文件,其中有两个类。我想在两个文件中使用这些类(index.php和page.php,这是一个包含在index.php中的动态生成页面)。
我的树文件看起来像这样:
/..
modules.js // Where I store my classes
page.php // This also contains a <script> part in which I would like to use my classes
index.php // Where I imp
我有两个js文件。这些是简化的版本(实际上有很多代码)
ucyg.js
这个文件包含在一个页面ucyg.php中-这个页面是通过Ajax调用加载到我的index.php中的。它的代码是
var Ucyg = function(){
var load = function() {
return $.get('Ajax/listado_ucyg.php', {
// some get parameters
}).done(function(data) {
// some DOM