我希望有
我不知道如何将所有这些结合在一起。
<form action="upgage.php"> revision <input type="text" name="revision" value="" /><br /> <input type="submit" value="update code base" /> <input type="submit" value="get current revision" /> </form>
我只想使用javascript,而不要使用jQuery
<script> document.getElementById('getValueButton').onclick = function() { document.getElementById('revisionTextField').value = getRevisionViaAjax(); } </script>