我在javascript中编写了一个提供onclick事件的代码。但是不是单击执行就需要双击才能执行它
<a href="javascript:void(0)" onclick="chatWith("arun")>Arun</a>
function chatWith(chatuser) {
createChatBox(chatuser);
$("#chatbox_"+chatuser+" .chatboxtextarea").focus();
}
function createChatBox(chatboxtitle,minimizeChatBox) {
if ($("#chatbox_"+chatboxtitle).length > 0) {
if ($("#chatbox_"+chatboxtitle).css('display') == 'none') {
$("#chatbox_"+chatboxtitle).css('display','block');
restructureChatBoxes();
}
$("#chatbox_"+chatboxtitle+" .chatboxtextarea").focus();
return;
}
答案 0 :(得分:0)
您的链接声明中有拼写错误:
<a href="javascript:void(0)" onclick="chatWith("arun")>Arun</a>
应该是:
<a href="javascript:void(0)" onclick="chatWith('arun')">Arun</a>
您不能在另一个“”中使用“”对。你需要使用'“”或“”。我对你的链接工作感到惊讶。 查看here以获取onclick事件的简单提示。