我在PHP代码中有一个值。存储在一个变量中。
如何使用jQuery获取该值并在alert中显示?
PHP代码:
<?php
$value = "1750";
?>
jQuery代码:
<script>
var simple = '<?php echo $value; ?>';
alert(simple);
</script>
我尝试使用上面的代码。警报框中没有显示任何内容。
答案 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>