开发者

Hiding a TR with ajax/js

I have the following HTML:

   <tr id="n16">
    <td class="t_row">Text <a href="#" onClick="javascript:notification_dismiss('16');">Dismiss</a></td>
   </tr>

I want to update my database and hide the TR when people click Dismiss. Updating the database is working fine, but the TR won't hide. I have this JS:

function stateChanged(str)
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 {
 document.getElementById("n" & str).display = 'none'
 }
}

I need to dynamically pass the TR's ID to the JS (using the "str" variable), but that part doesn't seem to be working.开发者_如何学Python Any ideas why?


You're using the binary & operator for string concatenation. You need to use +.

document.getElementById("n" & str).display = 'none';
//                          ↑ change this character to `+`
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜