为了账号安全,请及时绑定邮箱和手机立即绑定

jquery中关于什么时候加分号什么时候不加分号的问题

jquery中关于什么时候加分号什么时候不加分号的问题

csusun 2016-05-03 10:48:21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">     <head>         <title>放置插件</title>         <meta charset="utf-8">         <script src="http://www.imooc.com/data/jquery-1.8.2.min.js" type="text/javascript"></script>         <script src="http://www.imooc.com/data/jquery-ui-1.9.2.min.js" type="text/javascript"></script>         <style>         #divtest {     width: 282px; }   .box {     width: 280px;     border: solid 1px #eee;     margin: 10px 0px; } .box .title {     padding: 8px;     background-color: Blue;     color: #fff;     height: 23px;     line-height: 23px;     font-size: 15px;     font-weight: bold; } .box .drag {     padding: 5px;     cursor: move; } .box .drag div {     border: solid 1px #fff;     background-color: red;     color:#fff;     cursor: move;     width: 35px;     padding: 20px;     text-align: center; } .box .cart {     padding: 5px;     cursor: move; } .box .cart div {     padding: 5px;     height: 55px;     text-align:center; } .focus {     background-color: #eee; }         </style>     </head>          <body>         <div id="divtest">             <div class="box">                 <div class="title">产品区</div>                 <div class="drag"><div>苹果</div></div>                 <div class="drag"><div>香蕉</div></div>                 <div class="drag"><div>葡萄</div></div>             </div>             <div class="box">                 <div class="title">回收站</div>                 <div class="cart"><div id="tip">还没有产品</div></div>             </div>         </div>                  <script type="text/javascript">             $(function () {                 $(".drag").draggable();                 $(".cart").droppable({                     drop: function () {                         $(this)//这里为什么不能加分号????                         .addClass("focus")//这里为什么不能加分号????                         .find("#tip").html("");                     }                 })             });         </script>     </body> </html>搞不清楚什么时候该加什么时候不该加
查看完整描述

1 回答

已采纳
?
Caballarii

TA贡献1123条经验 获得超629个赞

加分号是结束一句话,你这边三行其实是一行的内容,只是为了看起来舒服才写的三行,怎么可以加分号

查看完整回答
反对 回复 2016-05-03
  • 1 回答
  • 0 关注
  • 4730 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信