我想使用 jQuery 添加计数器计时器脚本。就在 id="counter" 段落之后,而不是这段代码:
<body>
<p> beginning of site</p>
<table id="timer_table">
<tbody>
<tr>
<td>
<p id="counter" style="color: red;"> Here's the counter: </p>
</td>
</tr>
</tbody>
</table>
<p> rest of site...</p>
</body>
我会得到这个代码:
<body>
<p> beginning of site</p>
<table id="timer_table">
<tbody>
<tr>
<td>
<p id="counter" style="color: red;"> Here's the counter: </p>
<script>
var myCountdown1 = new Countdown({time:316});
</script>
</td>
</tr>
</tbody>
</table>
<p> rest of site...</p>
</body>
我通过使用萤火虫控制台来做到这一点,我正在运行这个:(写在不能附加 <script> 元素,很难,它仍然不能很好地工作)
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "js_folder/js1.js";
$('#counter').after(script);
js1.js 很简单:
var myCountdown1 = new Countdown({time:316});
效果不好。而不是得到这个结果: http ://bit.ly/19Ve9oM 我得到了这个: http: //postimg.org/image/np8y4spbx/
当我尝试检查页面源时,我什么也没得到。
总结一下:我应该使用哪个 jquery commnad 来插入
<script>
var myCountdown1 = new Countdown({time:316});
</script>
在 id="counter" 段落之后?并且它会像原来的 html 中已经写了这一行一样工作
谢谢