我有一个 SharePoint 列表,其中包含以下单行文本字段Title
:Year
和Type or Location
. 我希望能够Type or Location
在默认显示表单中隐藏表格行。我知道我应该创建一个 JavaScript 脚本并将其放在 DispForm.aspx 内的内容编辑器 Web 部件中。
我不熟悉 jQuery 语法,因此我需要代码方面的帮助,即我不知道如何引用包含Type or Location
字段及其值的表行。这是我到目前为止所做的,但它不起作用:
jQuery(document).ready(function($) {
$("input[title='Type or Location']").closest("tr").hide();
});
我知道这"input[title='Type or Location']"
部分不正确;至少我认为是这样。谁能帮帮我?谢谢你。