我的项目需要onBlur事件功能

时间:2014-12-09 09:25:53

标签: javascript php jquery ajax

我需要有关项目的javascript代码的帮助。

当字段(A)输入值为onblur时,我想要一个值将传递给外部php文件(external.php)的情况,并且在后端外部php文件(external.php)中计算的结果应该是另一个禁用输入字段的值(B)。请记住,内部HTML表单操作是(index.php)。

1 个答案:

答案 0 :(得分:0)

<input type="text" name="inputA" onBlur="inputA();" id="spend" /><span id="feedback"></span>
<input type="text" name="inputB" id="receive" disabled="true"/>

<script type="text/javascript">
function inputA(){
var xhr = new XMLHttpRequest();
xhr.open('GET','http://localhost/myproject/fetchvalueB.php?name='+document.getElementById['spend'].value,false);
xhr.send(null);
document.getElementById['feedback'].InnerHTML = xhr.responseText;
}
</script>