如何使用JavaScript一次设置多个属性?不幸的是,我无法在这个项目中使用像jQuery这样的框架。这就是我现在所拥有的:
var elem = document.createElement("img");
elem.setAttribute("src", "http://example.com/something.jpeg");
elem.setAttribute("height", "100%");
elem.setAttribute("width", "100%");
答案 0 :(得分:82)
你可以做一个辅助功能:
function setAttributes(el, attrs) {
for(var key in attrs) {
el.setAttribute(key, attrs[key]);
}
}
这样称呼:
setAttributes(elem, {"src": "http://example.com/something.jpeg", "height": "100%", ...});
答案 1 :(得分:11)
您可以创建一个带有可变数量参数的函数:
function setAttributes(elem /* attribute, value pairs go here */) {
for (var i = 1; i < arguments.length; i+=2) {
elem.setAttribute(arguments[i], arguments[i+1]);
}
}
setAttributes(elem,
"src", "http://example.com/something.jpeg",
"height", "100%",
"width", "100%");
或者,您在对象上传递属性/值对:
function setAttributes(elem, obj) {
for (var prop in obj) {
if (obj.hasOwnProperty(prop)) {
elem[prop] = obj[prop];
}
}
}
setAttributes(elem, {
src: "http://example.com/something.jpeg",
height: "100%",
width: "100%"
});
您也可以制作自己的可链接对象包装器/方法:
function $$(elem) {
return(new $$.init(elem));
}
$$.init = function(elem) {
if (typeof elem === "string") {
elem = document.getElementById(elem);
}
this.elem = elem;
}
$$.init.prototype = {
set: function(prop, value) {
this.elem[prop] = value;
return(this);
}
};
$$(elem).set("src", "http://example.com/something.jpeg").set("height", "100%").set("width", "100%");
答案 2 :(得分:10)
如果你想要一个framework-esq语法(注意:仅支持IE 8+),你可以扩展Element
原型并添加你自己的setAttributes
函数:< / p>
Element.prototype.setAttributes = function (attrs) {
for (var idx in attrs) {
if ((idx === 'styles' || idx === 'style') && typeof attrs[idx] === 'object') {
for (var prop in attrs[idx]){this.style[prop] = attrs[idx][prop];}
} else if (idx === 'html') {
this.innerHTML = attrs[idx];
} else {
this.setAttribute(idx, attrs[idx]);
}
}
};
这允许您使用如下语法:
var d = document.createElement('div');
d.setAttributes({
'id':'my_div',
'class':'my_class',
'styles':{
'backgroundColor':'blue',
'color':'red'
},
'html':'lol'
});
试一试:http://jsfiddle.net/ywrXX/1/
如果您不喜欢扩展主机对象(some are opposed)或需要支持IE7-,只需将其用作函数
请注意,setAttribute
不适用于IE中的style
或事件处理程序(不管怎么说)。上面的代码处理style
,但不处理事件。
<强>文档强>
答案 3 :(得分:8)
您可以编写ES5.1帮助程序函数:
function setAttributes(el, attrs) {
Object.keys(attrs).forEach(key => el.setAttribute(key, attrs[key]));
}
这样称呼:
setAttributes(elem, { src: 'http://example.com/something.jpeg', height: '100%' });
答案 4 :(得分:7)
您是否只是使用Object.assign(...)
将属性应用于创建的元素?
请注意,height
和width
属性为defined in pixels,而不是百分比。您必须使用CSS才能使其流畅。
var elem = document.createElement('img')
Object.assign(elem, {
className: 'my-image-class',
src: 'https://dummyimage.com/320x240/ccc/fff.jpg',
height: 120, // pixels
width: 160, // pixels
onclick: function () {
alert('Clicked!')
}
})
document.body.appendChild(elem)
// One-liner:
// document.body.appendChild(Object.assign(document.createElement(...), {...}))
&#13;
.my-image-class {
height: 100%;
width: 100%;
border: solid 5px transparent;
box-sizing: border-box
}
.my-image-class:hover {
cursor: pointer;
border-color: red
}
body { margin:0 }
&#13;
答案 5 :(得分:4)
或者创建一个创建包含参数
属性的元素的函数function elemCreate(elType){
var element = document.createElement(elType);
if (arguments.length>1){
var props = [].slice.call(arguments,1), key = props.shift();
while (key){
element.setAttribute(key,props.shift());
key = props.shift();
}
}
return element;
}
// usage
var img = elemCreate('img',
'width','100',
'height','100',
'src','http://example.com/something.jpeg');
仅供参考:height/width='100%'
无法使用属性。对于100%的高度/宽度,您需要元素style.height/style.width
答案 6 :(得分:3)
试试这个
function setAttribs(elm, ob) {
//var r = [];
//var i = 0;
for (var z in ob) {
if (ob.hasOwnProperty(z)) {
try {
elm[z] = ob[z];
}
catch (er) {
elm.setAttribute(z, ob[z]);
}
}
}
return elm;
}
DEMO:HERE
答案 7 :(得分:2)
const setAttributes = (el, attrs) =>
Object.entries(attrs)
.forEach(args =>
el.setAttribute(...args))
答案 8 :(得分:1)
使用此功能同时创建和设置属性
function createNode(node, attributes){
const el = document.createElement(node);
for(let key in attributes){
el.setAttribute(key, attributes[key]);
}
return el;
}
像这样使用它
const input = createNode('input', {
name: 'test',
type: 'text',
placeholder: 'Test'
});
document.body.appendChild(input);
答案 9 :(得分:1)
我猜这是立即为此类中的任何元素设置属性的最佳方法。
function SetAtt(elements, attributes) {
for (var element = 0; element < elements.length; element++) {
for (var attribute = 0; attribute < attributes.length; attribute += 2) {
elements[element].setAttribute(attributes[attribute], attributes[attribute + 1]);
}
}
}
var Class = document.getElementsByClassName("ClassName"); // class array list
var Data = ['att1', 'val1', 'att2', 'val2', 'att3', 'val3']; //attributes array list
SetAtt(Class, Data);
答案 10 :(得分:1)
您可以简单地向“元素”原型添加一个方法(setAttributes,末尾带有“ s”),
Element.prototype.setAttributes = function(obj){
for(var prop in obj) {
this.setAttribute(prop, obj[prop])
}
}
您可以在一行中定义它:
Element.prototype.setAttributes = function(obj){ for(var prop in obj) this.setAttribute(prop, obj[prop]) }
,您可以像调用其他方法一样正常调用它。这些属性作为对象给出:
elem.setAttributes({"src": "http://example.com/something.jpeg", "height": "100%", "width": "100%"})
如果给定参数不是对象,则可以添加if语句以引发错误。
答案 11 :(得分:1)
无函数示例:
let checkbox = document.createElement('input');
for (const [key, value] of Object.entries({
type: 'checkbox',
id: 'sys-surname',
class: 'switcher23',
value: 1,
name: 'surname'
})) {
checkbox.setAttribute(key, value);
}