私は次のものを持っています。関数をパススルーしようとしていることがわかりますが、this
これは JavaScript\jQuery で可能ですか? 用語が間違っていると思われるものを見つけることができないようです。
function pageLoad(sender, args) {
if (args.get_isPartialLoad()) {
jQuery(".ShowPleaseWait").click(function () {
processingReplacer("Please Wait...", this);
});
jQuery(".ShowProcessing").click(function () {
processingReplacer("Processing...", this);
});
}
}
function processingReplacer(message, this) {
if (Page_IsValid) {
jQuery(this).hide();
jQuery(this).after("<img id='" + jQuery(this).attr('id') + "' class='" + jQuery(this).attr('class') + "' src='/content/images/processing.gif' /> " + message);
alert("woohoo");
}
}