我有以下代码:
// Populate the title of the selects on change and trigger a change
$('#modal .update-title')
.change(function () {
var $select = $(this),
match = null,
matchRow = null,
title = $('option:selected', this).prop('title');
在打字稿中,这将标题的值设置为布尔值。然后,当我尝试按如下方式使用它时,出现错误:
$("#modal_Title_" + matchRow).val(title);
这是 JQuery 定义的另一个问题还是我做错了什么?检查定义文件时,我看到以下内容:
prop(propertyName: string): bool;
这似乎与 JQuery 文档不匹配。