我有一个“a href”标签,当点击这个时,调用一个函数但这不起作用,我收到一个错误:
Uncaught ReferenceError: Gonder is not defined index.php:10
onclick
javascript代码:
<script type="text/javascript">
$(document).ready(function(){
function Gonder(nereden, nereye) {
$.ajax({
type: "POST",
url: "/ara.php",
data: '{ "nereden":"' + nereden + '", "nereye":"' + nereye + '" }',
contentType: 'application/json; charset=utf-8',
success: function (result) {
$("#sonuc").html(result.d);
},
error: function (result) {
$("#sonuc").html(result.d);
}
});
}
});
</script>
html代码:
<a href="javascript:void(0)" onclick="Gonder(100, 101);" title="">
click</a>
不工作......
答案 0 :(得分:0)
未定义函数 - 如果函数定义不正确/可能存在错误,则可能会发生错误。
在你的情况下,这至少是错误的:
data: '{ "nereden":"' + nereden + '", "nereye":"' + nereye + '" }',
应该是:
data: { nereden: nereden, nereye: nereye },
答案 1 :(得分:0)
正如我上面发表的评论,
我希望定义文件外的功能将有助于使用该功能。 所以定义该文件准备好的功能,如下所示, 我希望数据格式需要更改,因为您要求数据不发送到PHP代码使用Piwolli数据格式而不是您的。
function Gonder(nereden, nereye) {
$.ajax({
type: "POST",
url: "/ara.php",
data: '{ "nereden":"' + nereden + '", "nereye":"' + nereye + '" }',
contentType: 'application/json; charset=utf-8',
success: function (result) {
$("#sonuc").html(result.d);
},
error: function (result) {
$("#sonuc").html(result.d);
}
});
}
答案 2 :(得分:0)
试试这个:
HTML
<a id="test" href="javascript:void(0);" title="">click</a>
JS
$(document).ready(function(){
$("#test").on("click",function(e){
e.preventDefault();
Gonder(100,101);
});
function Gonder(nereden, nereye) {
$.ajax({
type: "POST",
url: "/ara.php",
data: '{ "nereden":"' + nereden + '", "nereye":"' + nereye + '" }',
contentType: 'application/json; charset=utf-8',
success: function (result) {
$("#sonuc").html(result.d);
},
error: function (result) {
$("#sonuc").html(result.d);
}
});
}
});