protected void DataList2_ItemDataBound(object sender, DataListItemEventArgs e)
        {
            int iRow = e.Item.ItemIndex;
            HyperLink lnkItem = (HyperLink)e.Item.FindControl("hlItem");
            lnkItem.Style["cursor"] = "hand";
            lnkItem.Attributes.Add("onclick", "javascript: ctl00$ContentPlaceHolder1$txtItemID.value='" + DataList2.DataKeys[iRow].ToString() + "'; this.style.fontweight='bold'; return false;");
        }
为什么  this.style.fontweight='bold'; 这句不起作用?其它都是正常的。