0

How can I get this link to open as a popup perhaps with ajax?

<a href="page.php?catId=<?php $row['catId'];?>&userId=<?php $row['userId']; ?>">

With the variables transfered to the popup.

I quite like the ajax modal popup, but don't know how to pass php varaiables.

Thanks

4

3 に答える 3

1

page.php では、次のようなクエリ文字列を取得します。

$catId = $_GET['catId'];
$userId = $_GET['userId'];
于 2012-11-12T14:26:12.187 に答える
1

リンクを JavaScript に渡すことができます。

var myHTML= '<html>' +
'<body>' +
'<div>' + page.php?catId=<?php $row['catId'];?>&userId=<?php $row['userId']; ?> + '</div>+
'<!-- other html here -->' +
'</body>' +
'</html>';

var myPopup= window.open('http://www.domain_here.com/mypopup.html','mywindow','width=500,height=500,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0');

myPopup.document.open();
myPopup.document.write(myHTML);
myPopup.document.close();
于 2012-11-12T14:28:56.370 に答える
0

jQuery を使用してみてください。これはデータと呼ばれるセクションです。

$.ajax({
  type: "POST",
  url: "some.php",
  data: { name: "John", location: "Boston" }
}).done(function( msg ) {
  alert( "Data Saved: " + msg );
});

jQuery アヤックス

于 2012-11-12T14:28:13.787 に答える