我正在使用游戏框架做一个项目。
单击某些链接(例如“show”)后,例如正在调用 car.show(55) 并在 car.show 中执行一些数据库查询。然后列表操作正在完成。
我想要做的是,从 java 脚本文件中调用 removegivencar 函数。
我是说,
当所有汽车都列在 html 文件中时。我会用那辆车的 id 调用一个 js 函数。
例如:移除我的车
我想在 js 中调用 car.removegivencar 函数而不是 html
因为我有车的身份证。我应该做@{car.removMyOwremovegivencar(mycar.id)} 操作...
我试过了
function removeMyCar(id)
{
window.location="@{car.removMyOwremovegivencar(id)}";
}
或 window.location="@{car.removMyOwremovegivencar(" + id + ")"
等等,但做不到:(((请在这个问题上驱动我......