我需要从下面的代码中获取变量 speedMbps ,这样我就可以使用php执行if-else语句了。
我有这个表单,允许用户从下拉列表中选择视频,具体取决于用户连接将显示所选视频。
function showResults() {
var duration = (endTime - startTime) / 1000;
var bitsLoaded = downloadSize * 8;
var speedBps = (bitsLoaded / duration).toFixed(2);
var speedKbps = (speedBps / 1024).toFixed(2);
var speedMbps = (speedKbps / 1024).toFixed(2);
oProgress.innerHTML = "Your connection speed is: <br />" +
speedBps + " bps<br />" +
speedKbps + " kbps<br />" +
speedMbps + " Mbps<br />";
答案 0 :(得分:0)
你应该使用Ajax帖子获取:
HTML&amp; Jquery的
<input type="text" id="results" />
<script>
$.ajax({
url: "test_select.php",
data: {speedMbps: speedMbps },
cache: false
}).done(function( html ) {
$( "#results" ).val( html );
});
</script>
PHP文件&#34; test_select.php&#34;
<?php
echo $_POST['speedMbps'];
?>
记住:
<script src="//code.jquery.com/jquery-1.10.2.js"></script>