如何在Javascript中将元素值(sId和sTmp值)作为键值对调用?

时间:2016-05-12 05:38:04

标签: javascript jquery html

我有一个HTML页面。

我正在对链接进行ajax调用,并且我获得了包含sId和sTmp值的html数据。我需要在我的html页面中将sId和sTmp的所有值作为键值对。

(大约有106个sId和sTmp值)

如何将sId和sTmp的所有值作为键值对?

包含sId和sTmp值的html数据代码: -

  <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.android.aidsdruginformation.DetailActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <TextView
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:elevation="4dp"
                android:padding="8dp"
                android:text="ApprovalStatus"
                android:textAlignment="center" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:elevation="4dp"
                android:padding="8dp"
                android:text="FDA-approved"
                android:textAlignment="center" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <TextView
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:elevation="4dp"
                android:padding="8dp"
                android:text="ApprovalStatus"
                android:textAlignment="center" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:elevation="4dp"
                android:padding="8dp"
                android:text="GDA-approved"
                android:textAlignment="center" />
        </LinearLayout>
    </LinearLayout>
</ScrollView>

html页面代码: -

 sId = "1407900387";

    if ((3 == 13) && "")

{
  var sLinkLocation = sAddJavascriptEscapes('');

  sUrl = "OpenInformationItemLocation(\"" + sLinkLocation + "\", );";

}

else

  sUrl = "OpenHeaderLinkFromTable(\"http://172.220.1.4/QPR2014-1/Portal/QPR.Isapi.dll?PGPLUGIN&*24&SES=mWh8OHy43bW3LC5kC9yM-A&FMT=p&SKIN=portal&LAN=en%2c1&MODELID=1470448858&OBJECTID=1407900387\",\"http://172.220.1.4/QPR2014-1/Portal/QPR.Isapi.dll?PGPLUGIN&*24&SES=mWh8OHy43bW3LC5kC9yM-A&FMT=p&SKIN=portal&LAN=en%2c1&MODELID=1470448858&OBJECTID=1407900387\",\"" + sId + "\");";

window._sDefaultLink = window._sDefaultLink || sUrl;

RC("<table border='0' cellpadding='0' cellspacing='0'><tr><td><a id=\"a" + sId + "\" href='javascript:" + sUrl + "' title='" + sTmp + "'><img src='http://172.220.1.4/QPR2014-1/qprsoftware/pg/images/icn_subprocess.gif' title='" + sTmp2 + "'>&nbsp;" + sTmp + "<\/a>" + sTools + "</td></tr></table>", sTmp);

sTmp = "";

if (sTmp != "")

  sTmp = "<table border='0' cellspacing='0' cellpadding='0'>" + sDecodeURI(sTmp) + "</table>";

RC(sTmp, "");

0 个答案:

没有答案