自动单击不是我的页面上的按钮

时间:2019-06-22 10:27:31

标签: javascript php jquery html

我正在尝试使用php将另一页的代码放到页面上:

$url="site_url.html";
$agent= 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)';

$ch1 = curl_init();
curl_setopt($ch1, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch1, CURLOPT_VERBOSE, true);
curl_setopt($ch1, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch1, CURLOPT_USERAGENT, $agent);
curl_setopt($ch1, CURLOPT_URL,$url);
$page=curl_exec($ch1);

该代码有效,但是... 我需要单击代码中的一个按钮。点击我的页面无法正常工作。它仅适用于原始页面。我该怎么做? 谢谢

0 个答案:

没有答案