如何调用jquery函数并在html中显示输出?

时间:2017-08-29 20:26:22

标签: jquery html

我知道这是一个基本问题但是我试图将这个jquery代码中的用户名放在一个html div标签中,但到目前为止还没有成功,我想知道如何调用它并将其显示在div标签中?

来源:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>

<script type="text/javascript"> 
    var thisUserAccount = $().SPServices.SPGetCurrentUser({
                fieldName: "Title",
                debug: false

    });
</script>

Html正文:

<div id="1" style="font-weight: bold;">thisUserAccount</div>

1 个答案:

答案 0 :(得分:0)

将此添加到您的脚本中:

var div = document.getElementById('divID');
div.innerHTML += thisUserAccount;