1、按钮事件
使用ID:
<script> $(function(){ $("#button1").click(function(){ $.get("/template/", function(ret){ }); }); }); </script> ...... <button id="button1">button1</button><br/>
使用onclick:
<script> function sure(){ alert("Are you sure?"); } </script> ...... <button onclick="sure();">想好了</button>
2、判断img标签的src是否为空,
if($(".show-picture").attr("src")!=undefined) ...... //<img id="show-picture" src="" > 判断是否有该element . if(document.getElementById("active_box")!=null) { ...... }
3、获得上传图像的图片名字
var filePath = $("#img").val(); var arr=filePath.split('\\'); var fileName = arr[arr.length-1];
4、 设置标签的左边距:
//设置标签的左边距 <div style="margin-left: 30px;"> //字体加粗 <b>加粗</b>
5、通过ID、class、tagName(标签名字)获取 DOM。
document.getElementById(id); document.getElementsByTagName(tagName); document.getElementById(id).getElementsByClassName(className);