在数据库中,存储了许多项目。当用户加载页面时,项目将列为表格的行。要启用该用户可以删除元素(行),每行还提供一个“删除项目”按钮,其中附加了onclick
事件。这是生成表格的PHP部分。
for ($i=0; $i<$num_books; $i++)
{
$book = mysql_fetch_row($classics);
$shop .= "<tr>\n";
$shop .= "<td>".$book[0]."</td>\n";
$shop .= "<td><input type='button' onclick='remove_item()' value='Remove' /></td>\n";
$shop .= "</tr>\n";
}
remove_item()
函数在JQuery外部定义(见下文)。
但是,现在点击按钮会导致错误:ReferenceError: Can't find variable: remove_item
。我相信这是因为PHP不知道PHP返回的remove_item()
函数。
如何纠正?
完整的标记在这里
<html>
<head>
<script type='text/javascript'
src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js">
</script>
<script type="text/javascript"
src="../behaviour/interactions.js">
</script>
</head>
<body>
<h1>Publications database</h1>
<div id="items"></div>
</body>
</html>
完整的 interactions.js
脚本在这里
$('document').ready(function()
{
// Path to MySQL configuration.
var server = '../server/'
var data = '../data/'
function mysql_connection_setup()
{
$.get(data + 'mysql_connection_setup.php');
}
function populate()
{
$.get(server + 'shop.php', cb);
}
function remove_item()
{
console.log("Remove item.");
}
// Generic AJAX callback.
function cb(response)
{
$('#items').html(response);
}
mysql_connection_setup();
populate();
}); // End ready
答案 0 :(得分:3)
将其放在<head>
标记中:
<script>
function remove_item()
{
console.log("Remove item.");
// Fancy AJAX call to manipulate database.
}
</script>
通过这样做,可以全局访问该功能。或者,至少,您必须声明您的函数before
调用它们。
好的,这应该是解决方案: 首先,全局声明变量。
<head>
<script>
var mysql_connection_setup, populate, remove_item, cb ;
</script>
</head>
然后将函数分配给变量:
$('document').ready(function()
{
// Path to MySQL configuration.
var server = '../server/'
var data = '../data/'
mysql_connection_setup = function()
{
$.get(data + 'mysql_connection_setup.php');
}
populate = function()
{
$.get(server + 'shop.php', cb);
}
remove_item = function()
{
console.log("Remove item.");
}
// Generic AJAX callback.
cb = function(response)
{
$('#items').html(response);
}
mysql_connection_setup();
populate();
}); // End ready
您无法在其他功能中声明功能。但你可以在里面创建变量回调。
答案 1 :(得分:0)
由于您已经包含jQuery,请考虑使用自己的click
函数和文档就绪。
我会将PHP代码更改为:
for ($i=0; $i<$num_books; $i++)
{
$book = mysql_fetch_row($classics);
$shop .= "<tr>\n";
$shop .= "<td>".$book[0]."</td>\n";
$shop .= "<td><input type='button' class='myClass' value='Remove' /></td>\n";
$shop .= "</tr>\n";
}
在HTML文档的<head>
部分,我会添加:
$(document).ready(function(){
$('.myClass').click(function(){
console.log("Remove item."); //or call directly remove_item();
});
});