Community
Articles Topics Q&A
Learn
Course Programming Dictionary
Tools Library
Development tools Website Source Code PHP Libraries JS special effects Website Materials Extension plug-ins
AI Tools
Leisure
Game Download Game Tutorials
search
English
简体中文 English 繁体中文 日本語 한국어 Melayu Français Deutsch
Login
singup

  • Popular searches:
  • PHP
  • MySQL
  • jquery
  • HTML
  • CSS
  • Whole station
  • Course
  • Article
  • Q&A
  • Download
Found a total of 1452 related content
How to create a dropdown list in HTML?

Course Introduction:在网页开发中,创建下拉列表主要使用HTML的和标签。 1. Basic structure: Use multiple packages to define options; 2. Default selection: Set by adding selected attributes; 3. Grouping options: Used for classification display; 4. Notes: The name attribute cannot be omitted, CSS can be used to beautify styles, and multiple attributes are added when multiple selections.

2025-07-12 comment 0  721

Use JavaScript to download HTML pages containing filled-in forms

Course Introduction:本文将介绍如何使用 JavaScript 将包含用户已填写表单的网页保存为 HTML 文件。 The core idea is to set the value attribute of the form input box to the current input value before downloading, then get the HTML structure containing the form, encode it as a data URL, and finally trigger the download by creating a hidden tag.

2025-08-26 comment 0  732

How to use Playwright with Vue?

Course Introduction:Use Playwright in Vue projects mainly for end-to-end (E2E) testing. 1.安装Playwright可通过npm或yarn执行命令并选择默认配置开始;2.编写测试时,将测试文件放在tests/目录,利用page.goto()、click()和expect()等API验证页面交互;3.对于VueRouter和Vuex,Playwright能模拟真实行为,可测试路由跳转和状态变化,并通过拦截API请求提高测试稳定性;4.调试时可使用--headed参数或playwrightshow-trace查看执行过

2025-07-06 comment 0  568

发生错误 * {-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;} html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:transparent;} article,aside,details,figcaption,figure,footer,header,hgroup,nav,section {display:block;} html {font-size:16px;line-height:24px;width:100%;height:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;overflow-y:scroll;overflow-x:hidden;} img {vertical-align:middle;max-width:100%;height:auto;border:0;-ms-interpolation-mode:bicubic;} body {min-height:100%;background:#f4f6f8;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',微软雅黑,Arial,sans-serif;} .clearfix {clear:both;zoom:1;} .clearfix:before,.clearfix:after {content:'\0020';display:block;height:0;visibility:hidden;} .clearfix:after {clear:both;} body.error-page-wrapper,.error-page-wrapper.preview {background-position:center center;background-repeat:no-repeat;background-size:cover;position:relative;} .error-page-wrapper .content-container {border-radius:2px;text-align:center;box-shadow:0 0 30px rgba(99,99,99,0.06);padding:50px;background-color:#fff;width:100%;max-width:560px;position:absolute;left:50%;top:50%;margin-top:-220px;margin-left:-280px;} .error-page-wrapper .content-container.in {left:0px;opacity:1;} .error-page-wrapper .head-line {transition:color .2s linear;font-size:40px;line-height:60px;letter-spacing:-1px;margin-bottom:20px;color:#777;} .error-page-wrapper .subheader {transition:color .2s linear;font-size:32px;line-height:46px;color:#494949;} .error-page-wrapper .hr {height:1px;background-color:#eee;width:80%;max-width:350px;margin:25px auto;} .error-page-wrapper .context {transition:color .2s linear;font-size:16px;line-height:27px;color:#aaa;} .error-page-wrapper .context p {margin:0;} .error-page-wrapper .context p:nth-child(n+2) {margin-top:16px;} .error-page-wrapper .buttons-container {margin-top:35px;overflow:hidden;} .error-page-wrapper .buttons-container a {transition:text-indent .2s ease-out,color .2s linear,background-color .2s linear;text-indent:0px;font-size:14px;text-transform:uppercase;text-decoration:none;color:#fff;background-color:#2ecc71;border-radius:99px;padding:8px 0 8px;text-align:center;display:inline-block;overflow:hidden;position:relative;width:45%;} .error-page-wrapper .buttons-container a:hover {text-indent:15px;} .error-page-wrapper .buttons-container a:nth-child(1) {float:left;} .error-page-wrapper .buttons-container a:nth-child(2) {float:right;} @media screen and (max-width:580px) { .error-page-wrapper {padding:30px 5%;} .error-page-wrapper .content-container {padding:37px;position:static;left:0;margin-top:0;margin-left:0;} .error-page-wrapper .head-line {font-size:36px;} .error-page-wrapper .subheader {font-size:27px;line-height:37px;} .error-page-wrapper .hr {margin:30px auto;width:215px;} } @media screen and (max-width:450px) { .error-page-wrapper {padding:30px;} .error-page-wrapper .head-line {font-size:32px;} .error-page-wrapper .hr {margin:25px auto;width:180px;} .error-page-wrapper .context {font-size:15px;line-height:22px;} .error-page-wrapper .context p:nth-child(n+2) {margin-top:10px;} .error-page-wrapper .buttons-container {margin-top:29px;} .error-page-wrapper .buttons-container a {float:none !important;width:65%;margin:0 auto;font-size:13px;padding:9px 0;} .error-page-wrapper .buttons-container a:nth-child(2) {margin-top:12px;} } 你所浏览的页面暂时无法访问 你可以返回上一页重试 返回主页 返回上一页

Course Introduction:

2024-12-18 comment 0  719

`SqlParameter Parameters.Add vs. AddWithValue: Which Method Should You Choose?`

Course Introduction:SqlParameter Parameters.Add vs. AddWithValue: Choosing the Best MethodWhen working with SQL commands, you may encounter the need to add...

2025-01-10 comment 0  745

MoreTechnical Articles
Scala Tutorial

Course Elementary  13955

Course Introduction:Scala Tutorial Scala is a multi-paradigm programming language, designed to integrate various features of object-oriented programming and functional programming.

CSS Online Manual

Course Elementary  82523

Course Introduction:"CSS Online Manual" is the official CSS online reference manual. This CSS online development manual contains various CSS properties, definitions, usage methods, example operations, etc. It is an indispensable online query manual for WEB programming learners and developers! CSS: Cascading Style Sheets (English full name: Cascading Style Sheets) is an application used to express HTML (Standard Universal Markup Language).

SVG Tutorial

Course Elementary  13294

Course Introduction:SVG is a markup language for vector graphics in HTML5. It maintains powerful drawing capabilities and at the same time has a very high-end interface to operate graphics by directly operating Dom nodes. This "SVG Tutorial" is intended to allow students to master the SVG language and some of its corresponding APIs, combined with the knowledge of 2D drawing, so that students can render and control complex graphics on the page.

AngularJS Chinese Reference Manual

Course Elementary  24773

Course Introduction:In the "AngularJS Chinese Reference Manual", AngularJS extends HTML with new attributes and expressions. AngularJS can build a single page application (SPAs: Single Page Applications). AngularJS is very easy to learn.

Go language tutorial manual

Course Elementary  27598

Course Introduction:Go is a new language, a concurrent, garbage-collected, fast-compiled language. It can compile a large Go program in a few seconds on a single computer. Go provides a model for software construction that makes dependency analysis easier and avoids most C-style include files and library headers. Go is a statically typed language, and its type system has no hierarchy. Therefore users do not need to spend time defining relationships between types, which feels more lightweight than typical object-oriented languages. Go is a completely garbage-collected language and provides basic support for concurrent execution and communication. By its design, Go is intended to provide a method for constructing system software on multi-core machines.

More courses
  • I want to use preg_match_all to get the number of pages turned, but I haven't been able to get the data.

    " href="/2/2407_1/">首页</a><a class="prePage" href="/2/2407_1/">上页</a><a class="nextPage" href="/2/240

    2019-10-16 23:03:36 0  0  923

  • tp5 integrates JSapi of WeChat payment

    <?phpnamespace app\Wexinpay\controller;use think\Controller;class WeixinPay extends Controller{    //后台首页    public function notify()    {        /

    2018-07-26 10:17:28 0  1  1212

  • angular.js - The array read by the controller layer method is assigned to the object under $scope. The object is bound to the page. Why can't the content of the array be seen on the page?

    appCtrls.controller('uploadFileCtrl', function ($scope, $state, $cordovaImagePicker, localStorageService) { {代码...} }) //页面&lt;form name="fileForm" novalidate&gt;&lt;ion-view&amp

    2017-05-15 16:57:30 0  2  771

  • TP5 enterprise website construction, calling administrator list problem

    错误提示controller   Admin.php页面 <?php namespace app\admin\controller; use app\admin\common\Base; use think\Request; use app\admin\model\AdminModel; class Adm

    2017-09-26 17:18:34 0  1  1202

  • Why does my section if(result === true){} not respond as soon as I open the comment webpage?

    <?phpnamespace app\index\controller;use app\index\controller\Base;use think\Request;use app\index\model\User as UserModel;class User extends  Base{ //登陆页面    public function login()&

    2018-03-06 23:25:50 0  5  1642

MoreQ&A

Public welfare online PHP training,Help PHP learners grow quickly!

About us Disclaimer Sitemap

© php.cn All rights reserved