cUrl Converting into Javascript possible?
is there a way to convert this into javascript?
<?php
$url = 'http://www.yourdomain.com/';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
?>开发者_运维问答
Pure JavaScript? No.
JavaScript with a standard browser environment? Maybe. There is the XHR object (which includes the status
property, which will tell you if it was successful or not), but there is also the same origin policy.
Not directly. You can use XMLHttpRequest
to download webpages, but there are cross-domain issues to be aware of.
You can't but you can:
Actually you can save the php code to, let's say, mycurl.php, in your server, then use AJAX (XMLHttpRequest
) to pass the url to mycurl.php and get back the response to your javascript function.
精彩评论