以下の例でjavascriptの確認ボックスのスタイルを更新するにはどうすればよいですか?たとえば、jqueryを使用しますか?
<script type="text/javascript">
function deleteRow(tableName,colName,id, obj){
var r=confirm("Delete row from table " + tableName + " having " + colName+ " " +id+ "?" );
if (r==true) {
$.ajax({
type: "POST",
url: "callpage.php?page=tables/delete.php",
data: "tableName=" + tableName + "&colName=" + colName + "&id=" + id,
success: function(msg){
if(msg === '1'){
obj = $(obj).parents('tr');
$(obj).slideUp().remove();
}
else
alert("Error.");
}
});
}
}
</script>