0

在我的表单中,我想使用商品代码获取商品描述,例如,我的商品描述为 24"STUB END 316L SCH10S,其商品代码为 STUB316LS10SW,因此当我使用 STUB316LS10SW 在商品代码字段中搜索时,该特定商品代码的商品描述为不获取,因为在项目描述中我有 24" 即特殊字符,所以 ajax 没有获取项目描述..你能帮忙吗

         $(function() {
         function log( message ) {
         $( "<div>" ).text( message ).prependTo( "#log" );
          $( "#log" ).scrollTop( 0 );
         }
        $("#itemcode1").autocomplete({
         source: function( request, response ) {
        $.ajax({
        url: "getProductList.php",
        dataType: "json",
     data: {
      name_startsWith: request.term
      },
     success: function( data ) {
      response($.map( data.geonames, function( item ) {


      return {
      label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") ,
     value: item.nameval,
     value1: item.toponymName,
     price:item.price,
     quantity:item.quantity,
     prodId:item.prodId,
      itemcode:item.itemcode,
    }
    }));
   }
   });
    <table width="100%" border="0" cellpadding="0" cellspacing="0" class="style1">
          <tr>
            <td>Item Code </td>
            <td>&nbsp;</td>
            <td><input  type="text" id="itemcode1" name="itemcode1"  /></td>
          </tr>
          <tr>
        <td width="125">Products/Description</td>
        <td width="10">:</td>
        <td width="175"><input name="productDesc1" type="text"  id="productDesc1"></td>
      </tr>
         <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>
        <input type="submit" name="submit" value="Create" 
        style="width:100px;" id="crt"></td>
      </tr>
4

2 回答 2

1

将带有特殊字符的值(或所有内容)包装到encodeURI()函数中:http ://www.w3schools.com/jsref/jsref_encodeuri.asp

要在 JS 中解码,请使用:decodeURI()函数:http ://www.w3schools.com/jsref/jsref_decodeuri.asp

要在 PHP 中使用rawurldecode()函数进行解码:http ://www.php.net/manual/en/function.rawurldecode.php

于 2013-10-21T10:29:35.480 回答
0

使用它并对您的描述进行编码,这将接受您的特殊字符..您可能会搜索它,但不确定您真正想要什么

encodeURIComponent()

或者

string rawurlencode ( string $str )

改善你的问题......很难理解

于 2013-10-21T10:32:10.627 回答