私はlaravel 3で作業しています。ポップアップモーダルを開くアクションボタンがあります。
デバイスのリストがあります。最初のページには、ポップアップモーダルがありました。しかし、2 ページ目では、ポップアップ モーダルは表示されませんが、最初のページにリダイレクトされます。
index.blade.php コード:
{{ HTML::link("devices#openProfile", "Impose Profile", array("id"=>$deviceid,"class"=>"btnSkyBlue","onclick"=>"openImposeProfile($device->id) )")) }}
JS:
function openImposeProfile(id) {
document.getElementById("openProfile").style.display="block";
var intentedId = document.getElementById("devId_profile");
意図されたId.value = id;
console.log("dev id: "+id+" | 意図: "+intentedId.value);
}