动态创建具有高度和宽度的 div
我在应用程序中动态创建 div,并希望通过函数中的参数来选择 div 的宽度和高度。下面的代码可以工作,但是我不想将样式直接添加到我的 HTML 文档中,但它确实这样做了。
有没有另一种方法可以在不添加 css 到 HTML 文档的情况下完成此任务?
function createDiv(theWidth, theHeight){
var box = $('<div/>', {
'class': 'box',
'width': theWidth,
'height': theHeight,
}).appendTo('#content');
}
注意:高度和宽度是通过 AJAX 从 JSON 文件中检索的,并且可能有所不同。因此,我无法创建具有不同高度和宽度的不同类。
I'm dynamically creating divs in my application, and wants through parameters in a function to choose the width and height of the divs. The code below works, however I don't want to add styling directly to my HTML document which it does.
Is there another way to accomplish this without adding css to the HTML document?
function createDiv(theWidth, theHeight){
var box = $('<div/>', {
'class': 'box',
'width': theWidth,
'height': theHeight,
}).appendTo('#content');
}
Note: The height and width is retrieved from a JSON-file through AJAX and can differ. By that reason I can't create different classes with different heights and widths.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以:
为什么“我不想添加样式”?
编辑:
You can either:
Why "I don't want to add styling"??
Edit:
您需要在 CSS 文件中定义高度和宽度,并向新元素添加适当的类。
或者
You would need to define the height and width in a CSS file, and add the appropriate class to your new element.
Or
我可以看到这种情况发生的唯一其他方法是在 JSON 结果中返回一个样式元素,其中包含一些包含新宽度和高度的自动生成的类。您将样式添加到文档中,然后将类添加到元素中。这是一个示例:
对于工作示例: http://jsfiddle.net/epignosisx/YNpFV/
The only other way I can see this happening is by returning in your JSON result a style element with some auto-generated class containing the new width and height. You will add the style to your document and then add the class to the element. Here is a sample:
For a working example: http://jsfiddle.net/epignosisx/YNpFV/