哪些 Web 开发工具允许任何连接互联网的设备查看页面?

发布于 2025-01-05 08:34:06 字数 467 浏览 2 评论 0原文

我知道 iPad 或 iPhone 等 Apple 产品在使用 Flash 应用程序时遇到问题。

创建网站时应该使用哪些 Web 开发工具以避免兼容性问题?我唯一的限制是语言必须提供交互性和动画 - 例如 jQuery。

我认为 HTML、CSS 和 PHP 可以在 99% 的所有支持互联网的设备上运行。

什么工具和创建要在任何设备的互联网“资源管理器”上查看的网站时可以使用哪些语言?

我应该只坚持 HTML、CSS 和 HTML 吗? PHP?我想要一定程度的交互性,例如,用户可以将鼠标悬停在图像上并显示包含数据的弹出窗口......或者当单击对象时,可以在不重新加载页面的情况下发生操作。

有人可以为我指出正确的方向并帮助我开发一个对所有设备友好的语言列表吗?

我熟悉几种以网络为中心的语言的编程,我只是想知道应该远离哪些语言。某些网站会限制可以查看该网站的设备,除了该限制之外,该网站还需要具有交互性和动画效果。

I know that Apple products like the iPad or the iPhone have trouble with flash apps.

What web development tools should I use in order to avoid compatibility issues when creating a website? My only constraint is that the languages must provide for interactivity and animation - such as in jQuery.

HTML, CSS, and PHP are a few that I can think of that will behave on 99% of all internet enabled devices.

What tools & languages are available to use when creating a website intended to be viewed on any device's internet "explorer"?

Should I just stick to HTML, CSS, & PHP? I want a certain level of interactivity so that, for example, a user can hover over images and have pop-ups containing data to appear... or when an object is clicked, an action can happen without a page reload.

Can someone point me in the right direction and help me develop a list of languages that are all-device friendly?

I am familiar with programming in several web-focused languages, I'm just wondering which ones to stay away from. Certain ones will limit the devices that can view the site and besides that constraint, the site needs to be interactive and animated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

没企图 2025-01-12 08:34:06

HTML、CSS、PHP、JQUERY 确实是针对各种设备进行开发的最佳选择。如果设备范围是主要目标,我将远离使用 HTML5 和 CSS3。在下面的 IE7 中使用大量 jquery 仍然可能会遇到问题。另一方面,移动浏览器比桌面浏览器更先进或符合最新标准。我建议创建两个版本的应用程序。一种专用于在移动设备上运行,另一种用于桌面浏览器。遗憾的是苹果不支持 Flash 应用程序。如果您只需要 Hoover 进行交互,您甚至不需要 jquery / 但对于其他交互来说它将很有用。

HTML, CSS, PHP, JQUERY are truly your best bet for developing for a wide range of devices. If the scope of devices is the main goal I would stay away from using HTML5 and CSS3. You still may run into problems using much jquery with IE7 below. Mobile browsers on the other hand are much more advanced or up to date with standards then desktop browsers. I would suggest creating two versions of your application. One dedicated to running on mobile devices and one for desktop browsers. It is a shame apple wouldn't support flash applications. If all you need is hoovers for interaction you won't even need jquery / but for the other it will be useful.

夏尔 2025-01-12 08:34:06

“Web”是通过互联网访问相互链接的文档这一概念的名称。因此,要拥有一个网站,您实际上只需要一个能够链接到其他文档的文档,即 HTML。

HTML 实际上并不是一种编程语言或工具,它是一种文档格式。
如果您想创建一个网站,您需要使用 HTML 来标记您正在编写的内容。然后,您使用 CSS 来格式化您标记的文档的不同部分。

PHP 与此完全独立,PHP 用于创建动态 HTML 或服务器端的任何文档。

如果您想在网站上实现 Flash 效果,您可以使用 Javascript 来修改页面内容 (HTML) 和外观 (CSS)。

如果您需要学习 HTML/CSS,我强烈推荐 http://htmldog.com/

根据问题,HTML CSS 和 Javascript 几乎是唯一与移动浏览器兼容的网站内容方法,因为它们不需要插件。

你到底想做什么?

The "Web" is a name for the concept of having interlinked documents accessible over the internet. Therefore, to have a website you really only need a document able to link to other documents, namely HTML.

HTML is not really a programming language or a tool though, it is a document format.
If you want to make a website you need use HTML to Markup what you're writing. Then you use CSS to format different sections of the document you marked up.

PHP though, is completely separate from this, PHP is for creating dynamic HTML, or any document on the server side.

If you want to achieve a flash-effect on a site you use Javascript to modify the page content (HTML) and appearance (CSS).

If you need to learn HTML/CSS I would highly recommend http://htmldog.com/

As per the question, HTML CSS and Javascript are pretty much the only mobile-browser compatible method for website content as they don't need plugins.

What exactly are you trying to do?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文