JS, CSS style reference writing

JS, CSS style reference writing
CSS:
1.

<link type="text/css" href="<%=ResolveUrl("~/css/css.css")%>" rel="stylesheet"/> asp.net relative server path
<link type="text/css" href="/css/css.css" rel="stylesheet"/>
2.
<style type="text/css">
.txtClass {
font-size: 12px;
}
</style>
JS: Tags cannot be abbreviated, must be <script></script>
1.
<script type="text/javascript" src="<%=ResolveUrl("~/js/jquery-1.4.2.mini.js")%>" ></script> asp.net relative server path
<script type="text/javascript" src="/js/jquery-1.4.2.mini.js" ></script>

2.
<script language="javascript" type="text/javascript">
function check_up_message(text)
{
}
</script>

<<:  Solution for Docker Swarm external verification load balancing not taking effect

>>:  Web Design: Script Materials Reconstruct User Experience

Recommend

Analysis of Sysbench's benchmarking process for MySQL

Preface 1. Benchmarking is a type of performance ...

Solution to MySQL root password error number 1045

Stop MySQL Service Windows can right-click My Com...

MySQL Database Iron Laws (Summary)

Good database specifications help reduce the comp...

Problems with Vue imitating Bibibili's homepage

Engineering Structure The project is divided into...

How to install MySQL using yum on Centos7 and achieve remote connection

Centos7 uses yum to install MySQL and how to achi...

MySQL 5.7.17 latest installation tutorial with pictures and text

mysql-5.7.17-winx64 is the latest version of MySQ...

Solutions to MySql crash and service failure to start

I have been in contact with PHP for so long, but ...

The best solution for resetting the root password of MySQL 8.0.23

This method was edited on February 7, 2021. The v...

How to implement web stress testing through Apache Bench

1. Introduction to Apache Bench ApacheBench is a ...

React uses emotion to write CSS code

Table of contents Introduction: Installation of e...

Solution to high CPU usage of Tomcat process

Table of contents Case Context switching overhead...

Vue implements file upload and download

This article example shares the specific code of ...

Detailed explanation of Deepin using docker to install mysql database

Query the MySQL source first docker search mysql ...

Memcached method for building cache server

Preface Many web applications store data in a rel...