programing

jquery 작업 후 URL 가져오기

yellowcard 2023. 11. 6. 21:43
반응형

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

반응형