<input type='text' id='iptTxt'>
<script>
var iptTxt = document.getElementById('iptTxt')
//假如a是你需要的变量,那么可以通过获取iptTxt的value值来赋值给a
var a = iptTxt.value
</script>
swap(x,y)这个方法传递的是值,并不是对象也就是说,只是传了个10和20进去,而10和20并不代表a和b
你可以传一个数组进去,或者
var temp
temp=a
a=b
b=temp
这些代码直接加到后面