は、それは...そして隠された入力の束とシリアライズさとPHPファイルに送信され、それが何らかの形でこのライン?:jQueryのシリアル化とencodeURIComponentで、私は、フォームの入力をエンコードURIに必要
にencodeURIComponentでを組み合わせることが可能ですvar landingCreate = $(this).serialize();
UPDATE:
var landingCreate = $(this).serialize()+"&enc="+encodeURIComponent($('input[name=\'longform\']').val());
をしてURLを入力:
例えばこれを行う
http://www.smashingmagazine.com/2008/10/13/pricing-tables-showcase-examples-and-best-practices/
テキストボックスには、URLは変更されていません..すべてのダッシュとスラッシュなどを16進コードに変換するべきではありませんか?
UPDATE
ここでは完全なコードです。
<form id="createTokenLanding">
<input type="text" name="longform" />
<input type="hidden" name="domain" value="<?php echo rawurlencode($_SERVER['HTTP_HOST']); ?>" />
<input type="hidden" name="useragent" value="<?php echo rawurlencode($_SERVER['HTTP_USER_AGENT']); ?>" />
<input type="hidden" name="ip" value="<?php echo rawurlencode($_SERVER['REMOTE_ADDR']); ?>" />
<input type="hidden" name="cookieuser" value="<?php echo rawurlencode($_COOKIE['littlr_user']); ?>" />
<input type="submit" name="submit" value="Shorten" />
</form>
<div id="result">
123
</div>
<script type="text/javascript">
$(document).ready(function(){
$.ajaxSetup ({ cache: false });
$('#createTokenLanding').submit(function() {
var landingCreate = $('#createTokenLanding').serialize();
$.ajax({
url: 'action-create.php',
data: landingCreate,
success: function(responseText){
$('#result').html(responseText);
}
});
return false;
});
});
</script>
パスURIエンコードする入力は、ユーザーによって入力されたか、隠れた入力ですか? –
ユーザーが入力しました。 – Gary
"longform"は "this"の形式ですか? Ajaxのデータを送信するためにイベント送信を使用していますか? –