在PHP中获取onclick元素

时间:2013-08-04 21:00:34

标签: php dom onclick

我有下一个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做到这一点?

2 个答案:

答案 0 :(得分:1)

如果要获取URL,可以使用以下代码执行此操作:

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

// http://localhost/02_samsung_galaxy_s_duos_s7562.jpg
echo $parts[1];

答案 1 :(得分: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>