jquery post传值乱码?该怎么处理
jquery post传值乱码??????
- JScript code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->var t=null; var save=function(o){ $("#loading").html('正在保存..'); var x=$('#saveContact_'+o).offset().left-15; var y=$('#saveContact_'+o).offset().top-10; $("#divMsg").css({display:'block',"left":x+'px',"top":y+'px'}); var corpid=''; var contactid=$("input[name='ContactID["+o+"]']").val(); var psnamea=$("input[name='psnamea["+o+"]']").val(); var psgendera=$("select[name='psgendera["+o+"]']").val(); var psagea=$("input[name='psagea["+o+"]']").val(); var ctbirthday=$("input[name='ctbirthday["+o+"]']").val(); var psrolea=$("select[name='psrolea["+o+"]']").val(); var pspositiona=$("input[name='pspositiona["+o+"]']").val(); var mobile=$("input[name='mobile["+o+"]']").val(); var email1=$("input[name='email1["+o+"]']").val(); var psdetaila=$("input[name='psdetaila["+o+"]']").val(); var psadra=$("input[name='psadra["+o+"]']").val(); var cttel=$("input[name='cttel["+o+"]']").val(); //var defaultprint=$("input[name='isprintisprint["+o+"]']").val();DefaultPrint:defaultprint, var lastmodify=''; var url = "/?p=ContactInfo&action=UpdatePs"; //alert(defaultprint); url += "&datetime=" + new Date().getTime(); $.post(url,{Action:"POST",Modify_UserID:lastmodify,ContactID:contactid,CorpID:corpid,CtName:psnamea,PsSex:psgendera,CtAge:psagea,CtBirthday:ctbirthday,CtPosition:psrolea,PositionDetail:pspositiona,CtMobile:mobile,PsEmail:email1,CtDetail:psdetaila,CtAdr:psadra,CtTel:cttel},function(data,text){ $("#loading").html(data); t=setTimeout('clearMsg()',1000); //alert(data); },"text"); };
------解决方案--------------------
encodeURI("你要传的值"),看下我发的这个帖子:http://topic.csdn.net/u/20110929/17/3b20dbbf-1525-4527-a364-a9c15977030d.html
------解决方案--------------------
http://blog.csdn.net/youlianying/article/details/5766148

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to implement the laravel input hidden field: 1. Find and open the Blade template file; 2. Use the method_field method in the Blade template to create a hidden field. The creation syntax is "{{ method_field('DELETE') }}".

Preparation Use vuecreateexample to create a project. The parameters are roughly as follows: use native input. Native input is mainly value and change. The data needs to be synchronized when changing. App.tsx is as follows: import{ref}from'vue';exportdefault{setup(){//username is the data constusername=ref('Zhang San');//When the input box changes, synchronize the data constonInput=;return( )=>({

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

The role and examples of var keyword in PHP In PHP, the var keyword is used to declare a variable. In previous PHP versions, using the var keyword was the idiomatic way to declare member variables, but its use is no longer recommended. However, in some cases, the var keyword is still used. The var keyword is mainly used to declare a local variable, and the variable will automatically be marked as local scope. This means that the variable is only visible within the current block of code and cannot be accessed in other functions or blocks of code. Use var

Audio output and input require specific drivers and services to work as expected on Windows 11. These sometimes end up running into errors in the background, causing audio issues like no audio output, missing audio devices, distorted audio, etc. How to Fix Audio Service Not Responding on Windows 11 We recommend you to start with the fixes mentioned below and work your way through the list until you manage to resolve your issue. The audio service may become unresponsive for a number of reasons on Windows 11. This list will help you verify and fix most issues that prevent audio services from responding on Windows 11. Please follow the relevant sections below to help you through the process. Method 1: Restart the audio service. You may encounter

Vue.js is a lightweight JavaScript framework that is easy to use, efficient and flexible. It is one of the most popular front-end frameworks currently. In Vue.js, input box binding events are a very common requirement. This article will introduce the input box binding events in the Vue document in detail. 1. Basic concepts In Vue.js, the input box binding event refers to binding the value of the input box to the data object of the Vue instance, thereby achieving two-way binding of input and response. In Vue.j

Solutions for clicking the input box without a cursor: 1. Confirm the focus of the input box; 2. Clear the browser cache; 3. Update the browser; 4. Use JavaScript; 5. Check the hardware device; 6. Check the input box properties; 7. Debug JavaScript code; 8. Check other elements of the page; 9. Consider browser compatibility.

Vue is a popular JavaScript front-end framework with a responsive data binding and component system at its core. In Vue applications, the input box is one of the most commonly used UI elements. When the user enters text, we hope to listen for the carriage return event and validate the input before submitting. This article will introduce the input box enter event and verification function usage in the Vue document. 1. The carriage return event of the input box in Vue. Monitoring the carriage return event of the input box in Vue is very simple.
