How to assign the value of a javascript variable to a php variable

前端 未结 3 464
广开言路
广开言路 2021-01-26 07:53

I\'ve a form.

3条回答
  •  爱一瞬间的悲伤
    2021-01-26 08:42

    Try this:

    var pos = $('#name').position();
    $("form").append('');
    

    Then read name_position value from the POST data in the server side code.

提交回复
热议问题