本文介绍了未捕获的ReferenceError:未定义daisy的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
代码
code
while(rs.next())
{
String friendname = rs.getString(2);
out.print("<table><tbody><tr><td>"+rs.getString(2));
out.print(" <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>");
out.print(" <script src=\"js/index.js\"></script>");
// out.print("<button type=\"button\" onclick=friendnamebtn() id=\"btn_friends\">");
// out.print("<button type=\"button\" onclick='javascript:return friendnamebtn(this)' id=\"btn_friends\">");
out.print("<button type=\"button\" onclick='javascript:return friendnamebtn("+ friendname +")' id=\"btn_friends\">");
out.print("Add" + friendname);
out.print("</button>");
out.print("</td></tr></tbody></table>");
}
out.print("");
javascript code
function friendnamebtn(friendname){
// var friends = document.getElementById("btn_friends");
alert(friendname+"add");
}
推荐答案
这篇关于未捕获的ReferenceError:未定义daisy的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!