<table border="0" class="commentbox">
<tr>
<td>
<div id="comment-f78d0b00-a008-473d-b647-a4a103ee3778"></div>
<input type="button" class='btnReply' id="reply-f78d0b00-a008-473d-b647-a4a103ee3778" value="Reply"/>
</td>
</tr>
</table>
$(".commentbox .btnReply").live("click", function () {
// $(this).hide();
// i = 1;
id = $(this).attr("id").split("-")[1]
alert(id);
var strDiv =
"<input type='text' class='txtCmnt' id='txtReply-" + id + "' />
<input type='button' class='btnSave' value='Save' id='btnSave-" + id + "' /> ";
$("#comment-" + id).append(strDiv);
});
我希望 f78d0b00-a008-473d-b647-a4a103ee3778 在拆分后出现,而不是警报给 f78d0b00
我试图更改 id = comment_ f78d0b00-a008-473d-b647-a4a103ee3778 并拆分
id = $(this).attr("id").split("_")[1],but it doesnt work.
已编辑
输入- 容器-f78d0b00-a008-473d-b647-a4a103ee3778
拆分后的输出f78d0b00-a008-473d-b647-a4a103ee3778