getLocalTime返回的是字符串,请问怎么调用?

有一个JS函数需要el表达式作为参数 返回的是字符串 怎么在HTML中调用显示
<td>getLocalTime(${pageScope.data.loginTime});</td>

阿波罗的战车
浏览 74回答 2
2回答

回首忆惘然

html中调用javascript函数基本有两种方法:通过元素的事件来调用javascript函数<html><head><title>javascript函数调用</title></head><body><button&nbsp;onclick="demo()">点击调用demo函数</button><script>function&nbsp;demo(){alert("调用成功");}</script></body><html>效果图使用addEventListener调用函数<html><head><title>javascript函数调用</title></head><body><button&nbsp;id="btn">使用addEventListener调用函数</button><script>&nbsp;&nbsp;&nbsp;&nbsp;document.getElementById("btn").addEventListener("click",demo);&nbsp;&nbsp;&nbsp;&nbsp;function&nbsp;demo()&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alert("addEventListener调用函数成功");&nbsp;&nbsp;&nbsp;&nbsp;}</script></body></html>以上就是通过HTML调用javascript函数,分别为DOM级和DOM2级函数调用,还有DOM3函数调用,但是与DOM2级函数差别不大,就不做讲解。在实际开发中DOM2级函数调用更多的被使用。&nbsp;

慕桂英3389331

<!doctype html public "-//w3c//dtd html 4.0 transitional//en"><html><head><title> new document </title><meta name="generator" content="editplus"><meta name="author" content=""><meta name="keywords" content=""><meta name="description" content=""><script language="javascript" type="text/javascript">function getp1(){alert(document.getElementById("p1").innerHTML);}</script></head><body><p id="p1">段落</p><input type="button" onclick="getp1()" value="获取P1"/></body></html>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript