我想在一个配置文件.prettierrc中指定HTML和JS的字符串长度。
module.exports = {
singleQuote: true,
printWidth: 80,
[HTML]: {
printWidth: 150,
},
};
但在日志里我得到了:
ReferenceError: HTML is not defined
<html>
<body>
<button onclick = 'click1()'> </button>
</body>
<script>
var one
function click1(){
one = one + 1;
}
if (one == 3){
document.write('yes')
}
</script>
</html>
下面是一个示例JS / HTML。如果按了三次按钮,我怎么写“是”?此代
我在我的网站中添加了video.js,但如何添加1080p、720p、480p等质量级别
我添加的代码
在头上
<link href="http://vjs.zencdn.net/5.16.0/video-js.css" rel="stylesheet">
<!-- If you'd like to support IE8 -->
<script src="http://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script>
在身体里
我有一个简单的网页,并想添加JS到它。
渲染页面的控制器是-
@Controller
@RequestMapping("/testui")
public class GreetingController {
@RequestMapping("/greeting")
public String greeting(@RequestParam(value="name", required=false, defaultValue="World") String name, Model model) {
model.addAttr