这是返回当您尝试加载带有 [] 的 url 时发生的错误(据我所知)...我不知道为什么会收到此错误...请帮助我更正以下代码:
错误:警告:strpos() 期望参数 1 为字符串,数组在 C:...\query.php 中的第 1718 行 <<<
警告:preg_split() 期望参数 2 为字符串,数组在 C: 中给出。 ..\query.php 第 1719 行 <<<
警告:在 C:...\query.php 中为 C: 中的 foreach() 提供的参数无效 <<<
$("#submit").live("click", function() {
$("#form").submit(function() {
event.preventDefault();
var teste=$(this).serialize();
$.ajax({
type: "POST",
url: "./.../search.php",
data: teste,
success:function(data) {
$("#index_content").html(data);
}
});
});
});
有效的编辑版本:)
$("#submit").live("click", function() {
$("#form").submit(function() {
event.preventDefault();
teste = $('#form').serialize();
$.ajax({
type: "POST",
url: "./.../search.php",
data: { 'album-features': teste },
success:function(response) {
$("#index_content").html(response);
}
});
});
});