aspx ページからマスター ページに読み込まれた JavaScript 関数の 1 つを呼び出そうとしています。
以下は私が現在使用しているコードです:
ScriptManager.RegisterStartupScript(Me.Page, GetType(String), "showNotifier", "showNotifier(3000,'green','test');", True)
JavaScript コードは次のとおりです。
function showNotifier(delayTime, color, theMsg) {
var theDivName = '#Notifier';
e.preventDefault();
$(theDivName).css("background", color);
$(theDivName).text(theMsg);
$(theDivName).animate({ top: 0 }, 300, null);
$(theDivName).css("position", "fixed");
//Hide the bar
$notifyTimer = setTimeout(function () {
$(theDivName).animate({ top: -100 }, 1500, function () {
$(theDivName).css("position", "absolute");
});
}, delayTime);
});
そして、これは私のコードビハインドで呼び出されている場所です:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
ScriptManager.RegisterStartupScript(Me.Page, GetType(String), "showNotifier", "showNotifier(3000,'green','test');", True)
End If
End Sub
ページを実行してその aspx ページを読み込むと、次のエラーが表示されます。
Microsoft JScript runtime error: 'showNotifier' is undefined.
これは何が原因でしょうか?