프로그램&DB/AJAX
jQuery AJAX $.getScript() Method
Josep.H.S
2011. 8. 23. 14:13
jQuery AJAX getScript() Method
ExampleGet and run a JavaScript using an AJAX request:
Try it yourself » |
Definition and Usage
The getScript() method is used to get and execute a JavaScript using an AJAX HTTP GET request.
Syntax
| $(selector).getScript(url,success(response,status)) |
| Parameter | Description |
|---|---|
| url | Required. Specifies the url to send the request to |
| success(response,status) | Optional. Specifies the function to run if the request
succeeds Additional parameters:
|
[출처] http://www.w3schools.com
jQuery AJAX Methods