jquery:如果用户没有从自动完成列表中选择数据,则jquery自动完成明文框

时间:2017-10-29 12:30:22

标签: jquery jquery-ui

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="25dp"
    android:layout_alignParentBottom="true"
    android:background="?attr/colorPrimary" />

<android.support.v7.widget.RecyclerView
    android:id="@+id/actions_recycler_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:elevation="@dimen/padding_default" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@id/actions_recycler_view"
    android:layout_alignParentTop="true"
    android:orientation="vertical">

    <LinearLayout
        android:id="@+id/content_frame_layout"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="vertical" />

    <include layout="@layout/horizontal_line" />
</LinearLayout>

我使用更改事件但它不会触发。任何身体可以帮助我给我一个更好的salution。我希望当用户从列表中选择数据时,如果他没有选择任何内容,则将数据ID设置为文本框,然后id框变清晰。

1 个答案:

答案 0 :(得分:0)

一种解决方案是在发送Ajax请求时清除文本输入并设置“cache:false”:

source: function( request, response ) {
            $.ajax({
                type: "POST",
                url : "<?php echo base_url()."index.php/counter_sale/dl"; ?>",
                dataType: "json",
                cache: false,
                data: {
                   name: request.term
                },
                 success: function( data ) {
                    //HERE
                     $(ELEMENT_ID).val("");
                     response( $.map( data, function(item ) {
                        return {
                            value: item.name,
                            label: item.name,
                            dr_id:item.data_id,
                            return flase;
                        }
                    }));
                }

            });
        },