我有一个 jQuery 函数,它从数据库表中返回一行。当它显示在文本框中时,所有单词都会一起运行。例如: Everyonepleasebecarefulwhenleavingthebuilding
。我想将单词分开阅读:Every one please be careful when leaving the building
。这来自用户输入,因此用户单击他希望在文本框中显示的任何行。每行包含不同的数据。下面列出的代码是触发事件的代码:
$(document).ready(function() {
$("table tr").click(function(){
$("#txttread").val($(this).text());
});
});
$(document).ready(function() {
$('.pickme tr').not(':first').hover(
function() { $(this).addClass('highlight'); },
function() { $(this).removeClass('highlight'); }
).click( function() {
$('.selected').removeClass('selected');
$(this).addClass('selected').find('input').attr('checked','checked');
});
});