我有一个计算并返回值的JS函数。我想在我的HTML页面上显示该值,而无需调用事件。我尝试了几种方法,它们都没有显示出这个方法,但是当我调用一个带有显示我的函数值的警告的document.redy函数时,显示的值
Js功能
function getContWidth() {
var width = ($("#content_container_wide").css("width"));
return width;
};
HTML调用函数(我已尝试过所有这些方法,一次一个没有成功)
<script type="text/javascript">
getContWidth();
this.getContWidth();
document.write.getContWidth();
document.getContWidth();
this.write.getContWidth();
</script>
感谢您的帮助!
答案 0 :(得分:1)
没有命令输出您提供的代码中的值。假设你有一个带有id output 的HTML元素,你想要显示这个值,你可以这样:
$(function() {
$('#output').text(getContWidth());
});