今jQueryのdialogにて、モーダルウィンドウを作成しています。
そこでモーダルが開いた時に、呼び元のhiddenで持っている値を
取得して表示したいと考えております。
モーダル側はPHPを呼んでおります。
呼び元の値を取得する方法を教えて頂けないでしょうか?
jQuery
1 2var dlg = $('#edit').dialog({ 3 title : "hoge", 4 resizable : true, 5 autoOpen : false, 6 modal : true, 7 hide : 'fade', 8 width : 300, 9 height : 500 10}); 11 12$('.touch').on({ 13 'touchstart': function() { 14 this.isTouch = true; 15 }, 16 'touchmove': function() { 17 this.isTouch = false; 18 }, 19 'touchend': function() { 20 if ( this.isTouch == true ) { 21 dlg.load('hoge.php', function() { 22 dlg.dialog('open'); 23 }); 24 } 25 } 26});
回答2件
あなたの回答
tips
プレビュー