我想从 HTML 调用一个 php 脚本(带 args)并处理返回的数据,我尝试了各种风格:
<object id=test1 data="object.php" type="text/plain">
其中 object.php 只返回一个字符串,例如
<?php print "firstText:Hello World";?>
我不知道如何检索返回的字符串。
我希望能在类似的地方找到它
document.getElementById("test1").firstText
但是没有喜悦
我为什么要这样做,你问?
我想让页面在用户和服务器之间以交互方式工作,避免使用 POST/GET 重新提交时重新绘制浏览器窗口。