반응형
jquery 작업 후 URL 가져오기
jquery 기능으로 post target action에 접속하려고 합니다.
예:
<form action="/page/users" id="signup" method="post">
이 경우 "action" 부분 - "/page/users"에 접속하고 싶습니다.
$('#signup').live("submit", function(event) {
// get this submitted action
}
아주 간단한 걸 놓치고 있는 것 같아요.돔에 있는 가치는 보이는데 jquery에 어디에 저장되어 있는지 모르겠습니다.
감사합니다!
$('#signup').on("submit", function(event) {
$form = $(this); //wrap this in jQuery
alert('the action is: ' + $form.attr('action'));
});
이 ocode를 사용해 보십시오;;
var formAction = $("#signup").attr('action');
깔끔하고 간단합니다.
$('#signup').submit(function(event) {
alert(this.action);
});
언급URL : https://stackoverflow.com/questions/2550620/jquery-getting-post-action-url
반응형
'programing' 카테고리의 다른 글
C 프로젝트 기본 디렉토리 레이아웃이 있습니까? (0) | 2023.11.06 |
---|---|
SQL 명령이 제대로 종료되지 않았습니까? (0) | 2023.11.06 |
constint main = 195는 작동 프로그램을 생성하지만 constint가 없으면 segmentation fault로 끝나는 이유는 무엇입니까? (0) | 2023.11.01 |
JDBC - Oracle ArrayIndexOutOfBounds 예외 (0) | 2023.11.01 |
powershell: invoke-sqlcmd에 의한 오류 원인을 잡는 방법? (0) | 2023.11.01 |