velocity中为A链添加一个函数并带着参数,在参数里用velocity调用后台方法,方法里需要参数,参数接不到
代码是《<ahref="javascript:check('${foo.id}')">删除</a>》functioncheck(id){if(confirm("你确定要删...
代码是
《<a href="javascript:check('${foo.id}')">删除</a>》
function check(id){
if(confirm("你确定要删除吗?")){
$test.delete('"+id+"');
location.href="index.vm";
}
}
识别不到script传来的参数,一直认为id是个字符串
完整代码是这样的:
<table width="80%">
<tr>
<td>用户名</td><td>密码</td><td>操作</td>
</tr>
#foreach($foo in $tests.findall())
<tr>
<td>${foo.name}</td><td>${foo.pass}</td>
<td><a href="javascript:check('${foo.id}')">删除</a></td>
</tr>
#end
</table>
<SCRIPT>
function check(id){
if(confirm("你确定要删除吗?")){
$test.delete(id);
location.href="index.vm";
}
}
</SCRIPT> 展开
《<a href="javascript:check('${foo.id}')">删除</a>》
function check(id){
if(confirm("你确定要删除吗?")){
$test.delete('"+id+"');
location.href="index.vm";
}
}
识别不到script传来的参数,一直认为id是个字符串
完整代码是这样的:
<table width="80%">
<tr>
<td>用户名</td><td>密码</td><td>操作</td>
</tr>
#foreach($foo in $tests.findall())
<tr>
<td>${foo.name}</td><td>${foo.pass}</td>
<td><a href="javascript:check('${foo.id}')">删除</a></td>
</tr>
#end
</table>
<SCRIPT>
function check(id){
if(confirm("你确定要删除吗?")){
$test.delete(id);
location.href="index.vm";
}
}
</SCRIPT> 展开
1个回答
展开全部
$test.delete('"+id+"');
改为$test.delete(id);
改为$test.delete(id);
更多追问追答
追问
改过了,没用
追答
那就是javascript:check('${foo.id}')
这句有问题,
改成类似这样:
javascript:check(this.id)
或者
javascript:check(foo.id)
因为不知道你的${foo.id}究竟代表什么
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询