我有一个下拉列表 [事件、问题、问题、任务]。当最终用户登录并有一个名为 product 的标签时,我已经编写了一个代码,默认值应该是问题。但是,它似乎不起作用。它仍然为用户提供从列表中选择值的选项。
$j(document).ready(function() {
if(location.pathname == '/requests/new') {
var ct = currentUser.tags;
if(ct.indexOf("product") >= 0){
$j(document.getElementById("ticket_fields_75389").value = "Problem");
}
else {
$j(document.getElementById("ticket_fields_75389").value = "");
}
}
})