我想将位置对象发送到php。
HTML:
onclick="name(event)">
JS:
function name(e)
{
$.ajax({
url: '/...',
type: 'post',
data: {'x': JSON.stringify(e)}
});
}
PHP:
json_decode($request['x'])->pageX; // doesn't work
如何读取此对象的位置? 我用laravel。