私はこのユーザーコントロールを持っています:
function Test1($)
{
this.Width;
this.Height;
this.show = function()
{
///UserCodeRegionStart:[show] (do not remove this comment.)
var buffer = "..." +
"<button onclick=\"alertfuncfora()\"> click </button>" +
"...";
this.setHtml(buffer);
...
///UserCodeRegionEnd: (do not remove this comment.)
}
///UserCodeRegionStart:[User Functions] (do not remove this comment.)
///UserCodeRegionEnd: (do not remove this comment.):
}
...
function alertfuncfora(){
alert("ola ola");
}
しかし、ボタンをクリックするたびに、ポップアップ ウィンドウを閉じた後にページが更新されます。ボタンをクリックするたびにページを更新したくありません。どうすればいいですか?