我正在使用laravel 3.我有一个动作按钮,它将打开一个弹出模式。
我有一个设备列表。对于第一页,弹出模式就在那里。但对于第二页,弹出窗口模式没有出来,但它重定向回第一页。
index.blade.php代码:
{{HTML :: link(“devices#openProfile”,“Impose Profile”,数组(“id”=> $ deviceid,“class”=>“btnSkyBlue”,“onclick”=>“openImposeProfile ($ device-> id)“))}}
JS:
function openImposeProfile(id){
的document.getElementById( “openProfile”)的style.display = “块”。
var intentedId = document.getElementById(“devId_profile”);
intentedId.value = id;
console.log(“dev id:”+ id +“| intent:”+ intentedId.value);
}
答案 0 :(得分:1)
这就是你在L4中的表现方式
<a href="{{ URL::to('devices') }}#openProfile" id="{{ $deviceid }}" class="btnSkyBlue" onclick="openImposeProfile('{{ $device->id }}')">Impose Profile</a>
URL :: to可能在L3中不同
提示:你应该学习jQuery :)它会让你的生活更轻松