需要使用javascript獲得一個asp.net標籤文本,下面的JavaScript適用於IE和Chrome,但不適用於Firefox,如何使它適用於所有瀏覽器。document.getelementById()。innerText不在Firefox上
function showThumbnails_OnClick() {
var id = document.getElementById('lblId').innerText;
if (ChkBox.checked) {
location.href = 'Result.aspx?Id=' + id;
}
}
<asp:Label ID="lblId" runat="server" Text="">
看到http://stackoverflow.com/questions/1359469/innertext-works-in-ie-but-not-in-firefox –