[jquery] jquery가 게시물 작업 URL을 가져옵니다.

jquery 함수에서 게시 대상 작업에 액세스하려고합니다.

예:

<form action="/page/users" id="signup" method="post">

이 경우 “작업”부분- “/ page / users”에 액세스하고 싶습니다.

$('#signup').live("submit", function(event) {
    // get this submitted action
}

아주 간단한 것을 놓친 것 같습니다. dom에서 값을 보았지만 jquery에 저장된 위치를 모릅니다.

감사!



답변

$('#signup').on("submit", function(event) {
    $form = $(this); //wrap this in jQuery

    alert('the action is: ' + $form.attr('action'));
});


답변

이 ocde ;;

var formAction = $("#signup").attr('action');


답변

깨끗하고 간단합니다.

$('#signup').submit(function(event) {

      alert(this.action);
});


답변