这是我有这样的 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);
但它只显示'/test.php'。如何让它发挥作用?
// 对不起,我的英语不好