28
मैं एक सेटटाइमआउट () कॉलबैक के लिए एक पैरामीटर कैसे पारित कर सकता हूं?
मेरा कुछ जावास्क्रिप्ट कोड है जो दिखता है: function statechangedPostQuestion() { //alert("statechangedPostQuestion"); if (xmlhttp.readyState==4) { var topicId = xmlhttp.responseText; setTimeout("postinsql(topicId)",4000); } } function postinsql(topicId) { //alert(topicId); } मुझे एक त्रुटि मिलती है जो topicIdपरिभाषित नहीं है मैं setTimeout()फ़ंक्शन का उपयोग करने से पहले सब कुछ काम कर रहा था । …