На примере нажатия на ссылку
1 2 3 4 5 6 7 8 9 10 |
<html> <a href="#" onclick="return myFunction();">Link</a> <script> function myFunction() { alert('here'); ajaxRequest(MainForm.window, "getFile", [ "filePath=12345", "param1=B" ]); // double quotes here } </script> </html> |
On Server Side
1 2 3 4 5 6 |
procedure TMainForm.UniFormAjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); if SameText(EventName, 'getFile') then begin showmessage(Params.Values['filePath']); end; end; |