私のスクリプトコード
$(function () {
$(".ui-button-text").live("click", function () {
var buttonName = $(this).text();
if (buttonName == 'Continue') {
$("#runloGc").prop("disabled", true);
}
});
});
HTML コード
<button type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false"><span class="ui-button-text">Cancel</span></button>