HTML使用要点

1、按钮事件

    使用ID:


......

     使用onclick:


......

2、判断img标签的src是否为空,

if($(".show-picture").attr("src")!=undefined)
......
//

    判断是否有该element .

if(document.getElementById("active_box")!=null)
{
......
}

3、获得上传图像的图片名字

var filePath = $("#img").val();
var arr=filePath.split('\\');
var fileName = arr[arr.length-1];

4、 设置标签的左边距:

//设置标签的左边距
//字体加粗 加粗

5、通过ID、class、tagName(标签名字)获取 DOM。

document.getElementById(id);


document.getElementsByTagName(tagName);


document.getElementById(id).getElementsByClassName(className);

 

-----------------------------未完待续---------------------------------------------------

你可能感兴趣的:(前端,html,js)