如何在Jquery警报中获取php变量值?

时间:2016-08-31 07:44:38

标签: jquery

我在PHP代码中有一个值。存储在一个变量中。

如何使用jQuery获取该值并在alert中显示?

PHP代码:

<?php
     $value = "1750";
?>

jQuery代码:

<script>
     var simple = '<?php echo $value; ?>';
     alert(simple);
</script>

我尝试使用上面的代码。警报框中没有显示任何内容。

1 个答案:

答案 0 :(得分:0)

试试这个

 <ScrollView     
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/scrollviewdb"     
    android:layout_width="match_parent"    
    android:layout_height="wrap_content" >  
    <LinearLayout    
      xmlns:android="http://schemas.android.com/apk/res/android" 
              android:orientation="vertical"    
              android:layout_width="match_parent"    
              android:layout_height="wrap_content">    
         <TextView        
            android:layout_width="match_parent"   
            android:layout_height="wrap_content"         
            android:textSize="15sp"  
            android:padding="5dp"     
            android:id="@+id/ghavaed_text"/> 
      </LinearLayout>
  </ScrollView>