我想将外部文件中的javascript字符串发送到php文件。到目前为止,我已经尝试了一切。
我的Script.js
function doWork(string){
if (httpObject != null) {
httpObject.open("GET", "index.php?myvar=" + string, true);
httpObject.send(null);
}
}
我的index.php
if (isset($_GET['myvar'])) {
echo ($_GET['myvar']);
$string = $_GET['myvar'];
}
这对我没有任何帮助。非常感谢帮助。