表單不提交使用ajax.form提交上點擊li。給我一些解決方案使用jQuery的表單提交ajax
我的js代碼是在這裏
$(document).ready(function(){
$('#sortable li').click(function() {
$("#frmgallery").submit(function(event) {
event.preventDefault();
var formdata = $(this).serialize();
alert(formdata);
$.ajax({
type: "POST",
url: "gallery.php",
data: formdata,
success: function(){alert('success');}
});
});
});
HTML是這裏
<form method="post" enctype="multipart/form-data" id="frmgallery" name="gallery" action="<?php get_template_directory();?>admin.php?page=gallery/gallery.php">
<ul id="sortable">
Query
<li class="ui-state-default" name='liindex' id="<?php echo $row['glryRecordId'];?>" >
<span style="display:none"><?php echo $row['glryRecordId'];?></span>
<img class='thumbnail' alt='' src='<?php echo get_site_url();?>/wp-content/themes/townsley/upload/<?php echo $row['glryName']; ?>' width='80' height='60'
style="border: 1px solid #D3D3D3;padding:2px;"/><input type="hidden" value="<?php echo $row['glryRecordId'];?>" name="recordId[]" />
<a href="<?php get_template_directory();?>admin.php?page=gallery/gallery.php&delid=<?php echo $row['glryRecordId'];?>" style="display:block;text-align:center" title="DELETE this image from the record" class="arial-red">Remove</a>
</li>
</ul>
</form>
請幫我 感謝
AJAX的jQuery JavaScript的
什麼是'#sortable li'?你需要顯示你的html。 –
注意'功能(事件)',更喜歡使用不保留的名稱,如'function(e)' – TecHunter
請格式化您的HTML,以便更好的可讀性。這也會幫助你自己。此外,清理或刪除多餘的CSS類。我無法想象你的'ul'需要排序(或者選擇更多的「語義」名稱)。從代碼中,你似乎首先必須點擊'ul#sortable',然後再附加'submit'事件處理程序,這是故意的嗎? – nathanvda