-1

我有下一个 html 源代码:

<a id="smallphot1" style="cursor:pointer;" title="Mobile phone / smartphone Samsung Galaxy S Duos S7562 - gallery" onclick="loadPhoneSmallImg('phot1', 'http://localhost/02_samsung_galaxy_s_duos_s7562.jpg', 'http://localhost/', '_samsung_galaxy_s_duos_s7562.jpg' , '250px', '450px','4')"><img src="http://localhost/02_samsung_galaxy_s_duos_s7562.jpg" alt="Photo Samsung Galaxy S Duos S7562" border="0"></a>

我想要的只是得到http://localhost/02_samsung_galaxy_s_duos_s7562.jpg

有可能通过PHP做到这一点吗?

4

2 回答 2

1

如果要获取 URL,可以使用以下代码:

$parts = explode("', '", $your_html);

// http://localhost/02_samsung_galaxy_s_duos_s7562.jpg
echo $parts[1];
于 2013-08-04T21:39:10.787 回答
0

在 javascript 中,您可以隐藏 DIV 标签:

<a href="#" onclick="document.getElementById('test').style.visibility = 'visible'">test</a>

<div id="test" style="visibility: hidden">
 <img src="image.jpeg" />
</div>
于 2013-08-04T21:26:06.937 回答