如何将所选的JavaScript转换为jQuery?我需要选择按钮类而不是ID,并且我知道最简单的方法是jQuery。
var playButton1 = document.getElementById("playButton1");
playButton1.onclick = function() {
var ta = document.getElementById("playButton1");
document['player'].receiveText1(ta.value);
ta.value = ""
};
最佳答案
请尝试以下方法。您没有指定新的类名,所以我认为它是“ playButton”。
$(document).ready(function() {
$('.playButton').click(function() {
document['player'].receiveText1(this.value);
this.value = "";
});
});
关于javascript - 将JavaScript函数转换为jQuery,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7536147/