8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

将文本粘贴到表单中时加载数据

coder rock 3月前

116 0

我有一个搜索表单,当有人在其中输入内容时,它会做出反应。我希望它在粘贴内容时也能做出反应,可以吗?现在,粘贴的文本后面必须有一个空格。

我有一个搜索表单,当有人在其中输入内容时,它会做出反应。我希望它在粘贴内容时也能做出反应,可以吗?现在,粘贴的文本后面必须有一个空格。

<input type="text" name="search_text" id="search_text" placeholder="&#xf002;" class="fontAwesome" />

<div id="result"></div>
<script>
    $(document).ready(function () {
        load_data();
        function load_data(query) {
            $.ajax({
                url: "oSearch.php",
                method: "POST",
                data: { query: query },
                success: function (data) {
                    $("#result").html(data);
                },
            });
        }
        $("#search_text").keyup(function () {
            var search = $(this).val();
            if (search != "") {
                load_data(search);
            } else {
                load_data();
            }
        });
    });
</script>
帖子版权声明 1、本帖标题:将文本粘贴到表单中时加载数据
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由coder rock在本站《ajax》版块原创发布, 转载请注明出处!
最新回复 (0)
  • /ASP.NET 使用 jQuery AJAX 调用 SharePoint Rest Api 获取 \'401 (未授权)\'/请在授权部分'授权'中提供帮助:\'NTLM \' +btoa(用户名:密码) 添加项目...

    / ASP.NET 使用 jQuery AJAX 调用 SharePoint Rest Api 时获取 \'401 (未授权)\' /

    请帮助授权部分

    'Authorization': "NTLM " +btoa(username:password)
    
    Add Item to SharePoint List
    
    
    <h1>Add Item to SharePoint List</h1>
    
        Username:
        <br>
        Password:
        <br>
        Add Item
    
    
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function() {
            $('#addItemForm').submit(function(event) {
                event.preventDefault(); 
    
                const siteUrl = 'https://your-sharepoint-site-url.com'; // Update with your SharePoint site URL
                const listTitle = 'YourListTitle'; // Update with your SharePoint list title
                const endpointUrl = `${siteUrl}/_api/web/lists/getbytitle('${listTitle}')/items`;
    
                const newItemData = {
                    'Title': 'New Item Title',
                    'Description': 'This is a new item added from an external application.'
                    // Add more properties as needed for your SharePoint list columns
                };
    
                const username = $('#username').val();
                const password = $('#password').val();
                const basicAuth = 'NTLM ' + btoa(username + ':' + password);
    
                $.ajax({
                    url: endpointUrl,
                    type: 'POST',
                    headers: {
                        'Accept': 'application/json;odata=verbose',
                        'Content-Type': 'application/json;odata=verbose',
                        'Authorization': "NTLM " +btoa(username:password)
                    },
                    data: JSON.stringify(newItemData),
                    success: function(data) {
                        console.log('New item created successfully:', data);
                        // Optionally, display a success message to the user
                    },
                    error: function(error) {
                        console.error('Error creating new item:', error);
                        // Optionally, display an error message to the user
                    }
                });
            });
        });
    </script>
    
返回
作者最近主题: