<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.
編集済み
入力- container-f78d0b00-a008-473d-b647-a4a103ee3778
分割後の出力f78d0b00-a008-473d-b647-a4a103ee3778