我有一个示例代码:
<input width="50" type="text" value="" name="application_id" id="text_input">
<a href="#" onclick="addSelect('1', 'Test Name');" title="Click to add this item">Test Name</a>
和 javascript
function addSelect(id, title) {
document.getElementById('text_input').value = title;
}
当我运行代码时,结果错误是addSelect is not defined
?演示在这里,如何适合它?