js 获得form表单中的action在IE7中document.getElementById(form).actionurl会出错。解决办法 document.
js 获得form表单中的action
在IE7中document.getElementById('form').action=url会出错。
解决办法 document.getElementById('form').attributes['action'].value=url
这样就解决了。
js 获得form表单中的action
在IE7中document.getElementById('form').action=url会出错。
解决办法 document.getElementById('form').attributes['action'].value=url
这样就解决了。