我正在尝试使用 jQuery 更改选取框标记内的文本和选取框的速度。
在我的脚本中,我有以下内容:
$("div.change").click( function() {
//here I want to make the script to change the text to anything else ...
});
在我的 HTML 中:
<div id="marq"><marquee id="title" scrollamount="5">MY TEXT</marquee></div>
<div class="change">Click Here To Change The Text in Marquee</div>
如何更改选取框内的速度和文本?
提前致谢。