I am getting an error with the following TypeScript code:
///<reference path='../../../Shared/typescript/jquery.d.ts' />
///<reference path='../../../Shared/typescript/jqueryStatic.d.ts' />
function accessControls(action: Action) {
$('#logoutLink')
.click(function () {
var $link = $(this);
window.location = $link.attr('data-href');
});
}
I am getting an underlined red error for the following:
$link.attr('data-href');
The message says:
Cannot convert 'string' to 'Location': Type 'String' is missing property 'reload' from type 'Location'
Does anyone know what this means?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…