点击事件如何在jquery函数中传递文本框值作为参数

时间:2018-10-20 08:08:33

标签: javascript php jquery textbox parameter-passing

我想在单击时获取文本框的值作为参数

<input type="text" id="remark_mention" />

//链接可点击

<a class="remark  "href="javascript:void(0);"style="text-decoration:none;color:#d90000;" id="st_mention<?php echo strip_tags($row["pid"]); ?>" onClick="mention_or_remmove_remarks('<?php echo strip_tags($row["pid"]); ?>','st_mention');"> Mention</a>

我的jquery功能如下

function mention_or_remmove_remarks(mention_id, action){
    var dataString = "mention_id=" + mention_id + "&action=mention_or_remmove_remarks";//ajax code here for post mention_update.php 
}

如何在链接Onclick事件中获取文本框的值

2 个答案:

答案 0 :(得分:0)

你可以得到它。

使用表格并获取:

<form>
 <input type="text" id="remark_mention" name="remark_mention_ID"/>
<input type="button" onclick="foo(this.form.remark_mention_ID.value)"/>
</form>

OR:

<input type="text" id="remark_mention" />

并在您的js文件中:

var value = $('#remark_mention').val(); // value variable has your latest value

答案 1 :(得分:0)

HTML

<input type="text" id="remark_mention" />
<a class="remark "href="javascript:void(0);"> Mention</a>

Js

$('.remark').on('click', function(){
    var text_val = $('#remark_mention').val();
    console.log(text_val);
});

jsfiddle demo