我是编码新手,也是javascript的新手,并且一直致力于维护由其他人创建的SharePoint表单。我对SharePoint Designer或Javascript不太熟悉。 我需要做的就是更改SharePoint列表中表单域的宽度。这是我试图提出的代码......很确定它甚至不是很接近。
$('select[id^="Metric_x0020_Name"')("<style>=width: 602px;");
答案 0 :(得分:1)
使用jQuery
#Metric_x0020_Name{
width: 602px;
}
也许尝试使用CSS来调整样式?它看起来像这样
echo shell_exec("/usr/bin/git pull https://userName:password@bitbucket.org/userName/repo.git master 2>&1");
在SharePoint特定样式之后添加此内容。如果不覆盖当前存在的CSS,则可能需要增加CSS的特异性。在Google Chrome中,您可以通过右键单击该元素来检查使用的样式,然后进行检查。