任何人都可以将此代码的PHP部分翻译成.net吗?
function showonlyone() {
$(‘div[name|="newboxes"]‘).each(function(index) {
if ($(this).attr(“id”) == <?=htmlentities($_GET['id']);?>) {
$(this).show(200);
}
else {
$(this).hide(600);
}
});
}
由于
答案 0 :(得分:1)
Server.HtmlEncode(Request.QueryString['id']);