我有一个接受好友请求的脚本加载,我的 onclick 函数是:
onclick="acceptfriendrequest('John');"
更多细节 :
echo "<br><div style='width:100%; height: 30px;'><div class='userpic' style='background-image: url($avatar); margin-left: 10px; float: left;'></div><p class='incomingfriendrequests' style='float: left; margin-top: 7px; margin-left: 8px;'>$usernames</p><input type='submit' onclick='acceptfriendrequest($usernames)' style= 'margin-left: 10px; margin-top: 6.5px; float: left;' name='accept' value='Accept'><input type='submit' style= 'margin-left: 10px; margin-top: 6.5px; float: left;' name='deny'onclick='declinefriendrequest($usernames)' value='Deny'></div>";
但出于某种原因,我的控制台显示:Uncaught ReferenceError: John is not defined at HTMLInputElement.onclick。
这是它链接到的功能:
function acceptfriendrequest(username) {
var fd = new FormData();
fd.append("username", username);
fd.append("accept", true);
var xhr = new XMLHttpRequest();
var fullurl = '../backend/friends.php';
xhr.open('POST', fullurl, true);
xhr.onload = function() {
if (this.status == 200) {
loadfriends();
};
};
xhr.send(fd);
}
请帮助
慕码人8056858
呼唤远方
相关分类