我想知道如何使用ajax填充输入类型文本的值。
感谢。
答案 0 :(得分:1)
By,AJAX我认为你的意思是JavaScript。
嗯,你可以使用这样的东西:
<html>
<head>
<title>Form Example</title>
<script type="text/javascript">
window.onload = function()
{
document.myform.mytext.value = "TEXTBOX";
}
</script>
</head>
<body>
<form name="myform" method="get">
<input type="text" name="mytext" />
</form>
</body>
</html>
<强>解释强>
文档加载完成后,脚本会查找名为“myform”的表单。然后它在此表单中查找名为“mytext”的元素,然后您可以将value属性设置/更改为您想要的值。