这里的交易我有像这样的HTML代码
<form action="/test.php">
First name: <input type="text" name="firstname" /><br />
Last name: <input type="text" name="lastname" />
</form>
我想获得像http://localhost/test.php这样的完整网址,调用getAttribute(http://msdn.microsoft.com/en-us/library/aa752280(v=vs.85).aspx)
我尝试使用以下代码(Delphi)
formAction := form.getAttribute('action', 4);
但它只显示&#39; /test.php'。如何使它工作?
//抱歉我的英文不好
答案 0 :(得分:1)
希望它有所帮助。