提供的文件中存在许多错误(question2.html,question2.js)。
javascript文件应该 1)在页面加载时调用函数go 2)函数以编程方式在div中添加一个表“funky” 3)该表应该有10行10列 4)表格的单元格应包含文本“N M”,其中N是行的最小值 列索引和M是行和列索引的最大值。 5)偶数列中的单元格应为文本颜色为紫色。
这是我的html和JS代码
: item_navigation.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
>
<ImageButton
android:id="@+id/btn_previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_gravity="left"
android:padding="@dimen/fab_margin"
android:src="@drawable/ic_navigate_before_black_24dp"
android:background="@null"
/>
<TextView
android:id="@+id/text_short_description"
android:layout_toRightOf="@+id/btn_previous"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/btn_next"
android:layout_alignBottom="@+id/btn_previous"
android:layout_alignTop="@+id/btn_previous"
tools:text="descrição da receita"
android:gravity="center"
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
/>
<ImageButton
android:id="@+id/btn_next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_gravity="right"
android:src="@drawable/ic_navigate_next_black_24dp"
android:background="@null"
android:padding="@dimen/fab_margin"
/>
</RelativeLayout>