问题标签 [html]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
7 回答
22477 浏览

html - Why did the width collapse in the percentage width child element in an absolutely positioned parent on Internet Explorer 7?

I have an absolutely positioned div containing several children, one of which is a relatively positioned div. When I use a percentage-based width on the child div, it collapses to 0 width on IE7, but not on Firefox or Safari.

If I use pixel width, it works. If the parent is relatively positioned, the percentage width on the child works.

  1. Is there something I'm missing here?
  2. Is there an easy fix for this besides the pixel-based width on the child?
  3. Is there an area of the CSS specification that covers this?
0 投票
27 回答
246139 浏览

html - Determine a user's timezone

Is there a standard way for a web server to be able to determine a user's timezone within a web page?

Perhaps from an HTTP header or part of the user-agent string?

0 投票
26 回答
243402 浏览

html - HTML 表单中的多个提交按钮

假设您在 HTML 表单中创建了一个向导。一键后退,一键前进。由于按下后退按钮首先出现在标记中Enter,因此它将使用该按钮提交表单。

例子:

我想决定当用户按下哪个按钮来提交表单Enter。这样,当您按下时Enter,向导将移动到下一页,而不是上一页。你必须用tabindex它来做这个吗?

0 投票
7 回答
16716 浏览

c# - 如何从 Web 服务打印 HTML 文档?

我想从 C# Web 服务打印 HTML。Web 浏览器控制是多余的,在服务环境中不能很好地运行,在安全约束非常严格的系统上也不能很好地运行。是否有任何类型的免费.NET库可以支持基本 HTML 页面的打印?这是我到目前为止的代码,它不能正常运行。

当从 UI 类型线程调用时,这工作正常,但从服务类型线程调用时没有任何反应。更改Print()为会ShowPrintPreviewDialog()产生以下 IE 脚本错误:

错误: dialogArguments.___IE_PrintType为空或不是对象。

网址:res://ieframe.dll/preview.dlg

并出现一个小的空白打印预览对话框。

0 投票
11 回答
52421 浏览

javascript - 如何检测网页中使用了哪一种定义的字体?

假设我的页面中有以下 CSS 规则:

如何检测用户浏览器中使用了哪一种定义的字体?

对于想知道我为什么要这样做的人来说,因为我正在检测的字体包含其他字体中不可用的字形。如果用户没有字体,那么我希望它显示一个链接,要求用户下载该字体(这样他们就可以使用我的 Web 应用程序和正确的字体)。

目前,我正在为所有用户显示下载字体链接。我只想为没有安装正确字体的人显示这个。

0 投票
11 回答
21174 浏览

html - 如何在连字符 (-) 等特殊字符后分词

给定一个相对简单的 CSS:

如何使字符串保持在width 150的范围内,并在连字符上换行?

0 投票
1 回答
8405 浏览

html - 如何为我的网站添加 iPhone 图标?

如何iPhone为我创建的网站设置正确显示的图标?

0 投票
8 回答
27917 浏览

html - 如何通过单击文本标签来切换复选框?

CheckboxesHTML表单中没有隐式标签。在其旁边添加显式标签(一些文本)不会切换checkbox.

如何通过单击文本标签来切换复选框?

0 投票
93 回答
1285508 浏览

html - 您如何在 Web 表单字段/输入标签上禁用浏览器自动完成功能?

您如何在主要浏览器中禁用特定输入(或表单字段)的自动完成功能?

0 投票
8 回答
114229 浏览

javascript - 如何检测浏览器是否阻止弹出窗口?

有时,我遇到一个网页试图弹出一个新窗口(用于用户输入或其他重要内容),但弹出窗口阻止程序阻止了这种情况的发生。

调用窗口可以使用哪些方法来确保新窗口正确启动?