表单操作添加页面搜索

时间:2017-08-21 17:49:47

标签: javascript java php

我有问题 我希望你明白我写英文很糟糕: 我创建了一个包含这两个文件的搜索字段 的index.php

<script type="text/javascript">
$(document).ready(function(){
$('.pagination').pagination({
        items: <?php echo $total_records;?>,
        itemsOnPage: <?php echo $limit;?>,
        cssStyle: 'light-theme',
		currentPage : 0,
		onPageClick : function(pageNumber) {
			jQuery("#target-content").html('loading...');
			jQuery("#target-content").load("pagination.php?page=" + pageNumber);
		}
    });
});
</script>
从页面中召回的第二个 pagination.php

<ScrollView
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <LinearLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:orientation="vertical">

<!-- Add your components, if they go beyond the screensize, the ScrollView will automatically generate a Scrollbar functionality for you-->

 </LinearLayout>

<!-- Don't put another component inside the ScrollView that isn't the LinearLayout-->

</ScrollView>

问题是这个 编译表单时,结果只出现在index.php页面上 当我按下链接到pagination.php页面的底部页面上的按钮时,我重置了表单 enter image description here

我无法修复它,因为表单数据将在索引页面停止,但是当我通过这个调用pagination.php文件时:

{{1}}

我重置了表单 请帮我 我希望我很清楚 我也给你留了一封电子邮件,我愿意付钱给你 IlfreeIF@gmail.com

1 个答案:

答案 0 :(得分:-1)

这正是AJAX的用途(AJAX可以做同样的.load()函数,但具有更多的可配置性):

  1. http://www.seguetech.com/ajax-technology/
  2. jQuery Ajax POST example with PHP