在空间之后丢失词

Als*_*oja -4 html javascript

<select class="form-control"  id="country" name="country">
    <option data-othervalue=hellow world value="some value">three</option>
</select>

<script>
    $('#country').change(function () {
        var otherValue=$(this).find('option:selected').attr('data othervalue');

        $('#tempselect').val(otherValue);

    });
</script>

//Getting values to this textbox
<input type="text" id="tempselect">
Run Code Online (Sandbox Code Playgroud)

使用此脚本获取值时无法获取"世界",只能获得"hello".那么如何在具有空间的内容的文本框中显示hellow world本身.

小智 6

 <option data-othervalue=hellow world value="some value">three</option> 
Run Code Online (Sandbox Code Playgroud)

 <option data-othervalue="hellow world" value="some value">three</option>
Run Code Online (Sandbox Code Playgroud)