- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的代码中添加一个新行,以便我的文件可以位于彼此之下。我将发布 Js 和 asp.net 的代码及其链接按钮。
$(qFiles).each(function (i)
{
var a = document.createElement('a');
var isSharePoint = this.isSharePoint;
var img =document.createElement('img') ;
if (isSharePoint) {
a.target = "_blank";
a.href = this.FilePath;
img.src = appPath + '/Images/pagelink_16x16.png';
}
else {
var filePath = this.FilePath;
var fileName = this.FileName;
a.onclick = function() {
downloadFile(filePath + "\\" + fileName);
};
img.src = appPath + '/Images/download_16x16.png';
}
qDiv.appendChild(img);
a.innerHTML += this.FileName;
a.className = "linkSurrogate singleLine";
qDiv.appendChild(a);
});
qDiv = $(config.jQuerySelectors.quoteFiles);
var dialog = qDiv.dialog({
autoOpen: true,
height: config.dialog.height,
width: config.dialog.width,
closeOnEscape: true,
resizable: false,
title:"Quote "+ quoteNo +" Files",
modal: true,
buttons: {
"Close": function () {
qDiv.dialog('close');
}
}
});
正如您所看到的,这是一个验证,无论是否是 SharePoint。还有一个对话框显示两个文件。这是带有链接按钮的代码:
<div id="quoteFiles" style="display: none">
<asp:LinkButton CssClass="linkButton" ID="downloadFile" ClientIDMode="Static" runat="server" OnClick="downloadFile_Click"></asp:LinkButton>
<asp:LinkButton CssClass="linkButton" ID="sharePoint" ClientIDMode="Static" runat="server" OnClick="downloadFile_Click"></asp:LinkButton>
<asp:Label runat="server" ID="quoteFiles" ClientIDMode="Static" Text="There are no files attached."></asp:Label>
</div>
我已经尝试过 document.write
两者\n
和<br />
并没有奏效。我也尝试在 asp 页面中添加一个新行,但似乎没有任何效果。
最佳答案
在代码行之后:
qDiv.appendChild(a);
把这个放在它后面:
var p = document.createElement('p');
qDiv.appendChild(p);
这将被写入链接之后(文件 -> 链接 -> 换行符)。它将创建一个空的 p 标签。您还可以附加一个 br 标签,但有时这不会显示,然后您需要 2 个 br,它们在某些浏览器上显示为 2 个换行符,在其他浏览器上显示为 1 个换行符,因此您想要一个空的 p 标签,因为这总是所有浏览器都能正确呈现。
关于javascript - 换行 javascript 或 asp.net,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39371101/
在 Vaadin 7.0,显示时JavaBean Table 中的数据与 BeanContainer ,用新数据刷新表的正确方法是什么? 最佳答案 该表通过监听器监视表项的属性。如果您通过表的 Ite
首先,我使用的是带有 Axis2 1.6.2 的 eclipse,我正在 tomcat 6 上部署我创建的 Web 服务。Web 服务是在 eclipse 中通过自上而下的方法创建的。 我被要求使对我
我已将 Rails 3.1.1 应用程序升级到 Rails 3.1.3,现在,对于每个请求,它仅响应错误数量的参数(3 for 1)。不幸的是,它没有说明错误在哪里,并且应用程序跟踪为空。我认为存在一
我是一名优秀的程序员,十分优秀!