我需要将javascript函数的结果分配给vbscript
中的变量<script language="javascript">
function answer_process() {
var aux = document.getElementById('complete');
return aux.value;
}
</script>
<%
....
Dim despesa_aux
despesa_aux = answer_processo()
....
%>
我需要知道最好的方法。
提前致谢
答案 0 :(得分:0)
despesa_aux = call answer_processo()