将属性设置为div标记

时间:2016-12-19 10:04:46

标签: javascript jquery

我有一个简单的代码

<property>
    <name>hive.aux.jars.path</name>
    <value>file:///usr/local/Cellar/hive–1.2.1/lib/hive-hcatalog-core-1.2.1.jar</value>
  </property>

我希望使用javascript来回显div标签中的内容以显示这种方式

<div class="content"></div>

我需要使用javascript,因为如果屏幕宽度超过960px,我想使用函数来回显 我在第二部分Do something if screen width is less than 960 px

中使用了这个答案

提前谢谢你。

3 个答案:

答案 0 :(得分:5)

调用<form name="myForm" id="todoForm"> <input id="todoInput" name="fname" required> <button type="button" onclick="myFunction()">OK</button> </form> <ol id="todoList"></ol>,设置属性,你可以使用下面的方法。

纯JS setAttribute() 方法:

attribute

jQuery attr() 方法:

element.setAttribute('name','value');

示例:

$(element).attr('name','value');

希望这有帮助。

答案 1 :(得分:1)

使用jQuery:

  if (disp.text.length > 0) {
        disp.text = [disp.text stringByAppendingString:[NSString stringWithFormat:@"\n%@", make]];
    }
    else{
        disp.text = [NSString stringWithFormat:@"%@", make];
    }

答案 2 :(得分:1)

如果要在窗口宽度大于960

时添加属性
if ( window.innerWidth > 960 ) {

    document.querySelector('.content').setAttribute('something','')

}