javascript - 有没有办法用PHP获取这些值?

时间:2011-05-06 19:20:43

标签: php javascript jquery

我有这个JS代码,它使用onclick方法工作,并在新窗口中打开图像,这是图像的确切大小。

我从BolGallery脚本中修改了它。但是bolGallery脚本在PHP中解析它,并且能够动态获取'title','width'和'height'值。以及'ImageFile'值。

我的问题是,有没有办法用PHP获取这些?

我对JS不是很了解

function GalleryPopup(imageFile, width, height, title){

    var html = '<title>' + title + ' - Click to close </title><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onclick=\"javascript:window.close()\"><img src=\"' + imageFile + '\" alt=\"Click to close\"></body>';
    var popup = window.open(imageFile, '_blank', 'width=' + width+ ', height=' + height + ', status=no');
    popup.document.write(html);
    popup.focus();
}

或者,如果您知道有任何其他方法可以实现我的目标,请随时告诉我。

对于Instance我不知道如何设置变量:

$imagetitle = 

那会有用吗?

我也有jQuery ..

1 个答案:

答案 0 :(得分:1)

在jQuery中,您可以使用以下方法获取图像大小:

$('img').width();
$('img').height();

//这用于获取源文件和标题:

$('img').attr('src');
$('img').attr('title');