我有一个简单的表格。用户输入文本,我需要在表单的 action 属性中使用该文本。我还需要在表单属性中使用 JavaScript 变量action
。我需要的另一件事是能够测试表单输入以确保它没问题。
<script>
function validate(form){
var formVal=document.forms["myForm"]["test"].value;
simple test code for formVal
return true;
}
var scrt_var=737; //I've got more code to get this variable, I've just hardcoded it for simplicity
</script>
<FORM name="myForm" method="POST" action='http://www.example.com/viewdetails.php?id='+how to get scrt_var + '&page=' + how to get the text input; onsubmit="return validate(this);">
<input type="text" name="test" value="">
<input type="submit" value="Submit">
</form>
那么我该如何获取属性scrt_var
中的变量action
以及输入的文本呢?