js函数还没调用怎么就执行了?前台代码:
functionaddclick(id){varflag='<%=UpdateCount("1")%>'alert("flag参数为:"+flag);alert("add...
function addclick(id) {
var flag = '<%=UpdateCount("1") %>'
alert("flag 参数为:" + flag);
alert("addclick 函数,id 参数的值为:"+id);
}
后台:
protected bool UpdateCount(string id)
{
bool flag;
int ID = Convert.ToInt32(id);
int count = Convert.ToInt32((new dbInfoDAO().selectByID(ID)).Rows[0]["clickCount"].ToString());
int temp = count + 1;
flag = new dbInfoDAO().updateClickCountByID(ID);
return flag;
}
为什么页面一加载,js就自动执行了。 展开
var flag = '<%=UpdateCount("1") %>'
alert("flag 参数为:" + flag);
alert("addclick 函数,id 参数的值为:"+id);
}
后台:
protected bool UpdateCount(string id)
{
bool flag;
int ID = Convert.ToInt32(id);
int count = Convert.ToInt32((new dbInfoDAO().selectByID(ID)).Rows[0]["clickCount"].ToString());
int temp = count + 1;
flag = new dbInfoDAO().updateClickCountByID(ID);
return flag;
}
为什么页面一加载,js就自动执行了。 展开
1个回答
展开全部
如果你调用了 addclick() 这个函数的话 var flag = '<%=UpdateCount("1") %>' 这里 应该是 已经开始 调用 你的 UpdateCount()函数了 如果没调用的话 我就不清楚了
更多追问追答
追问
问题是,我是超链接的onclick才调用addclick()的啊,我还没点击超链接呢,它就自动执行了。
追答
你说的继续执行 是alert("flag 参数为:" + flag);
alert("addclick 函数,id 参数的值为:"+id); 输出正确是么?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询