我试图在单击作为其兄弟的按钮时将地址插入输入字段。
HTML
<label for="to">To:</label>
<input type="text" id="to" name="to" required="required" placeholder="An address" size="30" />
<a id="to-link" href="#" class="button">Get my position</a>
<a id="to-home" href="#" class="button">Home</a>
<label for="from">From:</label>
<input type="text" id="from" name="from" required="required" placeholder="Another address" size="30" />
<a id="from-link" href="#" class="button">Get my position</a>
<a id="from-home" href="#" class="button">Home</a>
jQuery
jQuery("#from-home, #to-home").click(function(event) {
event.preventDefault();
jQuery(this).prev("input").val("123 my street, 12345 Gotham");
});
我不知道我做错了什么,但如果我没有得到任何东西console.log(jQuery(this));
对不起,如果这是一个愚蠢的问题,我刚刚开始思考“这个”(或者至少我认为我是。)