1

エラーが発生します

[Error] PLS-00103 (805: 6): PLS-00103: Encountered the symbol "HTP" when expecting one of the following: := . ( % ;
The symbol ":=" was substituted for "HTP" to continue.

最後の行です。見落としているものは何もありませんが、明らかにコンマか何かがあります。誰でも助けることができますか?

      HTP.P( '<script> 
 function currencychange(){

     $.ajax({
          url:contr_entry_pkg.select_sales_center,
          data: { pvCurrCd:'||CURRDEF||',
          pnSalesCenterID: $(this).find("#pnSalesCenterID").val()

                }
          async:false,
          success: function(vRetVal){
                 var jsonObj =  eval("("+vRetVal+")");
               }

               });
           };' )   
     HTP.P( '</script>');  
4

2 に答える 2

1

;たぶん、最後の行の前にあるはずです

'...
       };' );   
 HTP.P( '</script>');  
于 2013-11-05T21:15:20.213 に答える
0

構文の強調表示でわかるように...

HTP.P('<script> 
    function currencychange(){
    $.ajax({
      url:contr_entry_pkg.select_sales_center,
      data: { 
        pvCurrCd:"||CURRDEF||",
        pnSalesCenterID: $(this).find("#pnSalesCenterID").val()
      },
      async:false,
      success: function(vRetVal) {
        var jsonObj =  eval("("+vRetVal+")");
      }

    });
};');   

HTP.P('</script>');  
于 2013-11-05T21:19:59.613 に答える